Stephan
Stephan
Explore posts from servers
FFilament
Created by Stephan on 7/29/2024 in #❓┊help
Unregister cluster in navigation menu
Thanks, @Vp !
16 replies
FFilament
Created by Stephan on 7/29/2024 in #❓┊help
Unregister cluster in navigation menu
class AccountSettings extends Cluster
{
protected static ?string $navigationIcon = 'heroicon-o-cog-6-tooth';

public static function shouldRegisterNavigation(): bool
{
return false;
}
}
class AccountSettings extends Cluster
{
protected static ?string $navigationIcon = 'heroicon-o-cog-6-tooth';

public static function shouldRegisterNavigation(): bool
{
return false;
}
}
16 replies
FFilament
Created by Stephan on 7/29/2024 in #❓┊help
Unregister cluster in navigation menu
Oh wow, that worked
16 replies
FFilament
Created by Stephan on 7/29/2024 in #❓┊help
Unregister cluster in navigation menu
In the general Cluster file..:
class AccountSettings extends Cluster
{
protected static bool $shouldRegisterNavigation = false;
...
}
class AccountSettings extends Cluster
{
protected static bool $shouldRegisterNavigation = false;
...
}
16 replies
FFilament
Created by Stephan on 7/29/2024 in #❓┊help
Unregister cluster in navigation menu
Because I want to use sub navigation for it.. Thats not possible then is it? I have 3 pages: ProfileSettings, ChangePassword and MySubscription
16 replies