You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes, maybe we need to add a new additional menu from a controller or other place. To get an instance of an existing menu, you can use the instance method.
$menu = menu()->instance('zurb-top-bar');
// You can also make additions to the menu again$menu->add(['title' => 'Settings', 'route' => 'settings']);
$menu->url('profile', 'Profile');
$menu->route('settings', 'Settings');