You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.4 KiB
31 lines
1.4 KiB
<?php
|
|
|
|
use blobt\widgets\Menu;
|
|
?>
|
|
<aside class="main-sidebar">
|
|
<!-- sidebar: style can be found in sidebar.less -->
|
|
<section class="sidebar">
|
|
<?php
|
|
echo Menu::widget([
|
|
'items' => [
|
|
['label' => 'MAIN NAVIGATION', 'is_header' => true],
|
|
['label' => 'IndexController', 'url' => '#', 'icon' => 'fa-hand-o-right', 'items' => [
|
|
['label' => 'Index', 'url' => ['site/index', 'tag' => 'new']],
|
|
['label' => 'Test', 'url' => ['site/test']],
|
|
]
|
|
],
|
|
['label' => '商品管理', 'url' => '#', 'icon' => 'fa-barcode', 'items' => [
|
|
['label' => '前端商品分类管理', 'url' => ['shopcategory/index', 'tag' => 'new']],
|
|
['label' => '后台商品分类管理', 'url' => ['category/index', 'tag' => 'popular']],
|
|
['label' => '商品管理', 'url' => ['goods/index', 'tag' => 'popular']],
|
|
['label' => '规格管理', 'url' => ['attribute/index', 'tag' => 'popular']],
|
|
['label' => '品牌管理', 'url' => ['brand/index', 'tag' => 'popular']],
|
|
['label' => '供应商管理', 'url' => ['supplier/index', 'tag' => 'popular']]
|
|
]
|
|
]
|
|
]
|
|
]);
|
|
?>
|
|
</section>
|
|
<!-- /.sidebar -->
|
|
</aside>
|