-
Notifications
You must be signed in to change notification settings - Fork 234
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
Nested groups do not work. #222
Comments
https://github.com/lavary/laravel-menu#nested-groups
Groups are not nested menus. Groups do not create a new level of ULs. What you want is a nested menu. Try this.... https://github.com/lavary/laravel-menu#advanced-usage Another example...
The first |
So... there is an error in documentation? Because in example it gives <ul>
...
<li data-info="test">
<a href="http://yourdomain.com/pages/about">About</a>
<ul>
<li data-info="test" data-role="navigation"><a href="http://yourdomain.com/pages/about/who-we-are"></a></li>
<li data-info="test" data-role="navigation"><a href="http://yourdomain.com/pages/about/what-we-do"></a></li>
<li data-info="test" data-role="navigation"><a href="http://yourdomain.com/pages/about/our-goals"></a></li>
</ul>
</li>
</ul> |
Yes, bug in either documentation or implementation. Did a quick test and I would have thought the following would work. But, it doesn't. So yes, something is wrong. Thanks for identifying this.
|
Working version of the code |
If I use example code:
It gives me
Instead of
Seems to be a bug.
The text was updated successfully, but these errors were encountered: