'integer', 'is_active' => 'boolean', ]; } /** * Scope to filter active working hours. */ public function scopeActive($query) { return $query->where('is_active', true); } }