Skip to content

Commit 6e8ecf2

Browse files
committed
feat: Add links to sidebar
1 parent a39e34f commit 6e8ecf2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

laravel/database/seeds/MenusTableSeeder.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,13 @@ public function run()
131131
/* guest menu */
132132
$this->insertLink('guest,user,admin', 'Dashboard', '/', 'cil-speedometer');
133133
$this->insertLink('guest', 'Login', '/login', 'cil-account-logout');
134-
$this->insertLink('guest', 'Register', '/register', 'cil-account-logout');
134+
$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();
135141
$this->insertTitle('user,admin', 'Theme');
136142
$this->insertLink('user,admin', 'Colors', '/colors', 'cil-drop');
137143
$this->insertLink('user,admin', 'Typography', '/typography', 'cil-pencil');

0 commit comments

Comments
 (0)