File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 33namespace Eclipse \Core \Filament \Pages ;
44
55use BezhanSalleh \FilamentShield \Traits \HasPageShield ;
6+ use Eclipse \Common \CommonPlugin ;
67use Eclipse \Core \Settings \EclipseSettings ;
78use Filament \Forms ;
89use Filament \Forms \Form ;
910use Filament \Pages \SettingsPage ;
11+ use Illuminate \Contracts \Support \Htmlable ;
1012
1113class ManageEclipse extends SettingsPage
1214{
@@ -27,13 +29,19 @@ public function form(Form $form): Form
2729 ]);
2830 }
2931
30- public static function getNavigationGroup (): ?string
32+ public static function getCluster (): ?string
3133 {
32- return ' Configuration ' ;
34+ return app (CommonPlugin::class)-> getSettingsCluster () ;
3335 }
3436
3537 public static function getNavigationLabel (): string
3638 {
3739 return 'System ' ;
3840 }
41+
42+ public function getTitle (): string |Htmlable
43+ {
44+ return $ this ->getNavigationLabel ();
45+ }
46+
3947}
Original file line number Diff line number Diff line change 66use BezhanSalleh \FilamentShield \FilamentShieldPlugin ;
77use BezhanSalleh \FilamentShield \Middleware \SyncShieldTenant ;
88use DutchCodingCompany \FilamentDeveloperLogins \FilamentDeveloperLoginsPlugin ;
9+ use Eclipse \Common \CommonPlugin ;
910use Eclipse \Common \Providers \GlobalSearchProvider ;
1011use Eclipse \Core \Filament \Pages \Dashboard ;
1112use Eclipse \Core \Filament \Pages \EditProfile ;
@@ -122,6 +123,7 @@ public function panel(Panel $panel): Panel
122123 Authenticate::class,
123124 ])
124125 ->plugins ([
126+ CommonPlugin::make (),
125127 FilamentShieldPlugin::make (),
126128 EnvironmentIndicatorPlugin::make (),
127129 FilamentDeveloperLoginsPlugin::make ()
You can’t perform that action at this time.
0 commit comments