Customizing CP Navigation #5688
Unanswered
HazemMohamed252
asked this question in
Q&A
Replies: 1 comment 3 replies
-
It won't get permissions automatically. That's something you have to do yourself - review the docs. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I just customized the navbar and add new menu in AppServiceProvider in boot function like that :
Nav::extend(function ($nav) {
$nav->content('Notification')
->url('notification')
->icon('shopping-cart');
});
And created new controller and set the route successfully but it does not appear in system permissions so i can grant it to specific users. How to handle it to be shown in permissions please
Beta Was this translation helpful? Give feedback.
All reactions