26 lines
388 B
PHP
26 lines
388 B
PHP
<?php
|
|
|
|
namespace App\Models\Chats;
|
|
|
|
use App\Support\UuidScopeTrait;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class Client extends Model {
|
|
use UuidScopeTrait, SoftDeletes;
|
|
|
|
protected $dates = [
|
|
];
|
|
|
|
protected $fillable = [
|
|
'uuid',
|
|
'name',
|
|
'email'
|
|
];
|
|
|
|
protected $hidden = [
|
|
'id'
|
|
];
|
|
|
|
}
|