-
Notifications
You must be signed in to change notification settings - Fork 501
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
Custom menu links to target new pages, ect outside the admin #321
Comments
Probably not a bad idea. What I'm thinking of doing in the next major version is something like this:
This would allow us to do something like this: 'menu' => array(
'model.whatever',
'settings.whatever',
'Page Title' => 'page.my.view',
'Link Title' => URL::route('some_route')
) This would require some small adjustments in the assumptions made in the |
That is perfect and what I was looking into going down my path. Good call!!! Sent from my iPhone On Aug 26, 2013, at 4:27 PM, "janhartigan" <[email protected]mailto:[email protected]> wrote: Probably not a bad idea. What I'm thinking of doing in the next major version is something like this:
This would allow us to do something like this: 'menu' => array( This would require some small adjustments in the assumptions made in the getMenu()https://github.com/FrozenNode/Laravel-Administrator/blob/master/src/Frozennode/Administrator/Menu.php#L42 method, namely that if some menu item is a string, it may not necessarily be a model or settings config item. — |
Can we get a way to have links in the menu array that will output to a new page outside the admin?
The text was updated successfully, but these errors were encountered: