diff --git a/app/Filament/Pages/TimesheetDashboard.php b/app/Filament/Pages/TimesheetDashboard.php index 960efe93..ed5231de 100644 --- a/app/Filament/Pages/TimesheetDashboard.php +++ b/app/Filament/Pages/TimesheetDashboard.php @@ -13,6 +13,8 @@ class TimesheetDashboard extends Page protected static string $view = 'filament::pages.dashboard'; + protected static bool $shouldRegisterNavigation = false; + protected function getColumns(): int | array { return 6; diff --git a/app/Filament/Resources/TimesheetResource.php b/app/Filament/Resources/TimesheetResource.php index 6367f12c..d814ecc6 100644 --- a/app/Filament/Resources/TimesheetResource.php +++ b/app/Filament/Resources/TimesheetResource.php @@ -23,6 +23,8 @@ class TimesheetResource extends Resource protected static ?int $navigationSort = 4; + protected static bool $shouldRegisterNavigation = false; + protected static function getNavigationLabel(): string { return __('Timesheet');