*/ use HasFactory, LogsModelActivity; protected $casts = [ 'started_at' => 'datetime', 'ended_at' => 'datetime', ]; public function branch() { return $this->belongsTo(Branch::class); } public function statusLogs() { return $this->hasMany(RoomStatusLog::class); } }