Skip to content

Commit 192a739

Browse files
committed
Merge branch 'devel'
2 parents 3c4e6ff + d6a66c5 commit 192a739

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

database/seeds/MenusTableSeeder.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,14 @@ public function run()
130130
]);
131131
$this->menuId = DB::getPdo()->lastInsertId(); //set menuId
132132
$this->insertLink('guest,user,admin', 'Dashboard', '/', 'cil-speedometer');
133+
$this->beginDropdown('admin', 'Settings', 'cil-calculator');
134+
$id = $this->insertLink('admin', 'Notes', '/notes');
135+
$id = $this->insertLink('admin', 'Users', '/users');
136+
$id = $this->insertLink('admin', 'Edit menu', '/menu/menu');
137+
$id = $this->insertLink('admin', 'Edit menu elements', '/menu/element');
138+
$id = $this->insertLink('admin', 'Edit roles', '/roles');
139+
$id = $this->insertLink('admin', 'Media', '/media');
140+
$this->endDropdown();
133141
$this->insertLink('guest', 'Login', '/login', 'cil-account-logout');
134142
$this->insertLink('guest', 'Register', '/register', 'cil-account-logout');
135143
$this->insertTitle('user,admin', 'Theme');

public/mix-manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"/js/coreui.bundle.min.js": "/js/coreui.bundle.min.js",
1313
"/js/Chart.min.js": "/js/Chart.min.js",
1414
"/js/coreui-chartjs.bundle.js": "/js/coreui-chartjs.bundle.js",
15+
"/js/coreui-chartjs.js": "/js/coreui-chartjs.js",
1516
"/js/cropper.js": "/js/cropper.js",
1617
"/js/main.js": "/js/main.js",
1718
"/js/colors.js": "/js/colors.js",

0 commit comments

Comments
 (0)