*/ class Event extends Model { protected $table = 'user_events'; protected $guarded = ['id', 'created_at', 'updated_at']; protected $casts = ['is_allday' => 'boolean']; public function user() { return $this->belongsTo(User::class); } public function project() { return $this->belongsTo(Project::class); } }