Tutorial coming up at: http://maxoffsky.com
The menu controller is in app/controllers/Admin/MenuController.php The menu model is in app/models/Menu.php
The important columns of the “menus” table are:
With these 3 fields we can build nested menus as many levels deep as you want. The Nestable plugin helps modify the values of these fields for the appropriate rows of data.
The hard part that took me a looong time to build is a very small function inside of app/models/Menu.php:
public function buildMenu($menu, $parentid = 0)
{
$result = null;
foreach ($menu as $item)
if ($item->parent_id == $parentid) {
$result .= "<li class='dd-item nested-list-item' data-order='{$item->order}' data-id='{$item->id}'>
<div class='dd-handle nested-list-handle'>
<span class='glyphicon glyphicon-move'></span>
</div>
<div class='nested-list-content'>{$item->label}
<div class='pull-right'>
<a href='".url("admin/menu/edit/{$item->id}")."'>Edit</a> |
<a href='#' class='delete_toggle' rel='{$item->id}'>Delete</a>
</div>
</div>".$this->buildMenu($menu, $item->id) . "</li>";
}
return $result ? "\n<ol class=\"dd-list\">\n$result</ol>\n" : null;
}
This function uses recursion to display the menu to the user even if the menu is many many levels deep. This function alone can save you a bunch of time.
The more people star my repos - the more I will give back to the community.
I post tutorials all the time on my blog : http://maxoffsky.com
The Laravel menu manager is open-sourced software licensed under the MIT license