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.

30 lines
1.4 KiB

  1. <?php
  2. use blobt\widgets\Menu;
  3. ?>
  4. <aside class="main-sidebar">
  5. <!-- sidebar: style can be found in sidebar.less -->
  6. <section class="sidebar">
  7. <?php
  8. echo Menu::widget([
  9. 'items' => [
  10. ['label' => 'MAIN NAVIGATION', 'is_header' => true],
  11. ['label' => 'IndexController', 'url' => '#', 'icon' => 'fa-hand-o-right', 'items' => [
  12. ['label' => 'Index', 'url' => ['site/index', 'tag' => 'new']],
  13. ['label' => 'Test', 'url' => ['site/test']],
  14. ]
  15. ],
  16. ['label' => '商品管理', 'url' => '#', 'icon' => 'fa-barcode', 'items' => [
  17. ['label' => '前端商品分类管理', 'url' => ['shopcategory/index', 'tag' => 'new']],
  18. ['label' => '后台商品分类管理', 'url' => ['category/index', 'tag' => 'popular']],
  19. ['label' => '商品管理', 'url' => ['goods/index', 'tag' => 'popular']],
  20. ['label' => '规格管理', 'url' => ['attribute/index', 'tag' => 'popular']],
  21. ['label' => '品牌管理', 'url' => ['brand/index', 'tag' => 'popular']],
  22. ['label' => '供应商管理', 'url' => ['supplier/index', 'tag' => 'popular']]
  23. ]
  24. ]
  25. ]
  26. ]);
  27. ?>
  28. </section>
  29. <!-- /.sidebar -->
  30. </aside>