ChatList.php 340 B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. use Dcat\Admin\Traits\HasDateTimeFormatter;
  4. use Illuminate\Database\Eloquent\Model;
  5. class ChatList extends Model
  6. {
  7. use HasDateTimeFormatter;
  8. protected $table = 'chat_list';
  9. protected $fillable = ['user_id', 'to_user_id','last_msg','last_time','atime','un_read'];
  10. public $timestamps = false;
  11. }