Skip to content

Commit

Permalink
Fix config code style
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroennoten committed Aug 28, 2016
1 parent 63755e3 commit acf85b7
Showing 1 changed file with 23 additions and 24 deletions.
47 changes: 23 additions & 24 deletions config/adminlte.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@

'collapse_sidebar' => false,


/*
|--------------------------------------------------------------------------
| URLs
Expand Down Expand Up @@ -106,76 +105,76 @@
'MAIN NAVIGATION',
[
'text' => 'Blog',
'url' => 'admin/blog',
'can' => 'manage-blog'
'url' => 'admin/blog',
'can' => 'manage-blog',
],
[
'text' => 'Pages',
'url' => 'admin/pages',
'icon' => 'file',
'label' => 4,
'text' => 'Pages',
'url' => 'admin/pages',
'icon' => 'file',
'label' => 4,
'label_color' => 'success',
],
'ACCOUNT SETTINGS',
[
'text' => 'Profile',
'url' => 'admin/settings',
'icon' => 'user'
'url' => 'admin/settings',
'icon' => 'user',
],
[
'text' => 'Change Password',
'url' => 'admin/settings',
'url' => 'admin/settings',
'icon' => 'lock',
],
[
'text' => 'Multilevel',
'icon' => 'share',
'text' => 'Multilevel',
'icon' => 'share',
'submenu' => [
[
'text' => 'Level One',
'url' => '#',
'url' => '#',
],
[
'text' => 'Level One',
'url' => '#',
'text' => 'Level One',
'url' => '#',
'submenu' => [
[
'text' => 'Level Two',
'url' => '#',
'url' => '#',
],
[
'text' => 'Level Two',
'url' => '#',
'text' => 'Level Two',
'url' => '#',
'submenu' => [
[
'text' => 'Level Three',
'url' => '#',
'url' => '#',
],
[
'text' => 'Level Three',
'url' => '#',
'url' => '#',
],
],
],
],
],
[
'text' => 'Level One',
'url' => '#',
'url' => '#',
],
],
],
'LABELS',
[
'text' => 'Important',
'text' => 'Important',
'icon_color' => 'red',
],
[
'text' => 'Warning',
'text' => 'Warning',
'icon_color' => 'yellow',
],
[
'text' => 'Information',
'text' => 'Information',
'icon_color' => 'aqua',
],
],
Expand Down

0 comments on commit acf85b7

Please sign in to comment.