Guest User

Untitled

a guest
Aug 16th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Menu Items
  5. |--------------------------------------------------------------------------
  6. |
  7. | Specify your menu items to display in the left sidebar. Each menu item
  8. | should have a text and and a URL. You can also specify an icon from
  9. | Font Awesome. A string instead of an array represents a header in sidebar
  10. | layout. The 'can' is a filter on Laravel's built in Gate functionality.
  11. |
  12. */
  13. 'menu' => [
  14. 'MAIN NAVIGATION',
  15. [
  16. 'text' => 'adminlte::adminlte.create_new',
  17. 'url' => 'terms/edit',
  18. 'icon' => 'file',
  19. 'label' => null,
  20. 'label_color' => 'success',
  21. ],
  22. 'ACCOUNT SETTINGS',
  23. [
  24. 'text' => 'adminlte::adminlte.profile',
  25. 'url' => 'config/profile',
  26. 'icon' => 'user',
  27. ],
  28. [
  29. 'text' => 'adminlte::adminlte.change_password',
  30. 'url' => 'config/password',
  31. 'icon' => 'lock',
  32. ],
  33. ],
Add Comment
Please, Sign In to add comment