how to move navigation menu to user menu if not possible how to disable the group menu
7 Replies
There a is configuration option for topbar navigation in v3
->topNavigation(false) not working to hide menu it can only be use the move the menu on top
->navigation(false) - working but it remove all sidebar menu. I only want to remove the menu inside sky group
This is how you can hide resources in the menu https://filamentphp.com/docs/3.x/panels/navigation#disabling-resource-or-page-navigation-items
i can't see the page resource to add
protected static bool $shouldRegisterNavigation = false;
the navigation is using larazeus plugin
Ask for help in the package channel #sky-cms
But on first sight you can't hide the navigation, only disable the resources
SkyPlugin::make() ->hasPostResource()
and then you can overwrite the resource in your own app to configure itThought that's what you wanted.
ok thank you