Files
hr/app/Enums/NavigationGroup.php
2026-07-31 18:08:08 +05:00

22 lines
434 B
PHP

<?php
declare(strict_types=1);
namespace App\Enums;
use Filament\Support\Contracts\HasLabel;
enum NavigationGroup: string implements HasLabel
{
case Organization = 'organization';
case Employees = 'employees';
case LeaveManagement = 'leave_management';
case Records = 'records';
case System = 'system';
public function getLabel(): ?string
{
return __('hr.navigation.' . $this->value);
}
}