We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to get the menu name in my blade views? I'm not using Vue in my website front views so I can't properly use the json feature.
Also I'm not sure about this but if I want to test if the menu exists I'll do something like this:
@if (menu_builder('main')) {!! menu_builder('main') !!} @endif
But what if somehow I change the slug? I wonder if there's a better way to achieve this.
Thx for your work anyways :)
The text was updated successfully, but these errors were encountered:
I think this could be a useful enhancement for the package.
As a quick solution you can create your own helper function to get the menu name:
if (!function_exists('menu_name')) { function menu_name($slug) { $menu = Menu::whereSlug($slug)->first(); if (!$menu) { return ''; } return $menu->name; } }
Sorry, something went wrong.
@hofmannsven maybe you can add a pull request. Thanks!
No branches or pull requests
Is there a way to get the menu name in my blade views?
I'm not using Vue in my website front views so I can't properly use the json feature.
Also I'm not sure about this but if I want to test if the menu exists I'll do something like this:
But what if somehow I change the slug? I wonder if there's a better way to achieve this.
Thx for your work anyways :)
The text was updated successfully, but these errors were encountered: