Sidebar/SidebarExtender.php
<?php namespace Modules\Menu\Sidebar;
use Maatwebsite\Sidebar\Group;
use Maatwebsite\Sidebar\Item;
use Maatwebsite\Sidebar\Menu;
use Modules\Core\Contracts\Authentication;
class SidebarExtender implements \Maatwebsite\Sidebar\SidebarExtender
{
/**
* @var Authentication
*/
protected $auth;
/**
* @param Authentication $auth
*
* @internal param Guard $guard
*/
public function __construct(Authentication $auth)
{
$this->auth = $auth;
}
/**
* @param Menu $menu
*
* @return Menu
*/
public function extendWith(Menu $menu)
{
$menu->group(trans('core::sidebar.content'), function (Group $group) {
$group->weight(90);
$group->item(trans('menu::menu.title'), function (Item $item) {
$item->weight(3);
$item->icon('fa fa-bars');
$item->route('admin.menu.menu.index');
$item->authorize(
$this->auth->hasAccess('menu.menus.index')
);
});
});
return $menu;
}
}