Skip to content
New issue

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

Get menu name in blade files? #3

Closed
Manoz opened this issue Mar 20, 2019 · 2 comments
Closed

Get menu name in blade files? #3

Manoz opened this issue Mar 20, 2019 · 2 comments

Comments

@Manoz
Copy link

Manoz commented Mar 20, 2019

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 :)

@hofmannsven
Copy link
Contributor

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;
    }
}

@Krato
Copy link
Collaborator

Krato commented Mar 22, 2019

@hofmannsven maybe you can add a pull request. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants