%PDF- %PDF-
Direktori : /home/forge/api-takeaseat.eco-n-tech.co.uk/app/Models/ |
Current File : //home/forge/api-takeaseat.eco-n-tech.co.uk/app/Models/Message.php |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Message extends Model { use HasFactory; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'user_id', 'name', 'email', 'phone', 'message', 'read', 'read_at' ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'read' => 'boolean', 'read_at' => 'datetime' ]; /** * Get the user */ public function user() { return $this->belongsTo(User::class); } }