We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a39e34f commit 6e8ecf2Copy full SHA for 6e8ecf2
laravel/database/seeds/MenusTableSeeder.php
@@ -131,7 +131,13 @@ public function run()
131
/* guest menu */
132
$this->insertLink('guest,user,admin', 'Dashboard', '/', 'cil-speedometer');
133
$this->insertLink('guest', 'Login', '/login', 'cil-account-logout');
134
- $this->insertLink('guest', 'Register', '/register', 'cil-account-logout');
+ $this->insertLink('guest', 'Register', '/register', 'cil-account-logout');
135
+ $this->beginDropdown('admin', 'Settings', '/', 'cil-puzzle');
136
+ $this->insertLink('admin', 'Media', '/media');
137
+ $this->insertLink('admin', 'Users', '/users');
138
+ $this->insertLink('admin', 'Menu', '/menu');
139
+ $this->insertLink('admin', 'BREAD', '/bread');
140
+ $this->endDropdown();
141
$this->insertTitle('user,admin', 'Theme');
142
$this->insertLink('user,admin', 'Colors', '/colors', 'cil-drop');
143
$this->insertLink('user,admin', 'Typography', '/typography', 'cil-pencil');
0 commit comments