27 lines
832 B
PHP
27 lines
832 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Brand\Sidebar;
|
||
|
|
||
|
use Maatwebsite\Sidebar\Item;
|
||
|
use Maatwebsite\Sidebar\Menu;
|
||
|
use Maatwebsite\Sidebar\Group;
|
||
|
use Modules\Admin\Sidebar\BaseSidebarExtender;
|
||
|
|
||
|
class SidebarExtender extends BaseSidebarExtender
|
||
|
{
|
||
|
public function extend(Menu $menu)
|
||
|
{
|
||
|
$menu->group(trans('admin::sidebar.content'), function (Group $group) {
|
||
|
$group->item(trans('product::sidebar.products'), function (Item $item) {
|
||
|
$item->item(trans('brand::brands.brands'), function (Item $item) {
|
||
|
$item->weight(12);
|
||
|
$item->route('admin.brands.index');
|
||
|
$item->authorize(
|
||
|
$this->auth->hasAccess('admin.brands.index')
|
||
|
);
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
}
|