Chat.php 142 B

123456789
  1. <?php
  2. namespace App\Models;
  3. class Chat extends BaseModel
  4. {
  5. protected $table = 'chats';
  6. protected $fillable = ['title', 'chat_id'];
  7. }