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.

26 lines
987 B

  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' => 'Category', 'url' => '#', 'icon' => 'fa-barcode', 'items' => [
  17. ['label' => 'List', 'url' => ['category/index', 'tag' => 'new']],
  18. ['label' => 'Create', 'url' => ['category/create', 'tag' => 'popular']],
  19. ]
  20. ]
  21. ]
  22. ]);
  23. ?>
  24. </section>
  25. <!-- /.sidebar -->
  26. </aside>