Commit 2d3571bd authored by Nicolas Widart's avatar Nicolas Widart

Fix config

parents 35e4dcde 3834f156
<?php <?php
return [ return [
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| The prefix that'll be used for the administration | The prefix that'll be used for the administration
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
*/ */
'admin-prefix' => 'backend', 'admin-prefix' => 'backend',
/* /*
...@@ -22,12 +22,12 @@ return [ ...@@ -22,12 +22,12 @@ return [
*/ */
'admin-theme' => 'AdminLTE', 'admin-theme' => 'AdminLTE',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Define which assets will be available through the asset manager | Define which assets will be available through the asset manager
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| These assets are registered on the asset manager | These assets are registered on the asset manager
*/ */
'admin-assets' => [ 'admin-assets' => [
// Css // Css
'bootstrap.css' => ['theme' => 'vendor/bootstrap/dist/css/bootstrap.min.css'], 'bootstrap.css' => ['theme' => 'vendor/bootstrap/dist/css/bootstrap.min.css'],
...@@ -42,7 +42,6 @@ return [ ...@@ -42,7 +42,6 @@ return [
//'gridstack.css' => ['module' => 'dashboard:vendor/gridstack/dist/gridstack.min.css'], //'gridstack.css' => ['module' => 'dashboard:vendor/gridstack/dist/gridstack.min.css'],
'gridstack.css' => ['module' => 'dashboard:gridstack/gridstack.min.css'], 'gridstack.css' => ['module' => 'dashboard:gridstack/gridstack.min.css'],
'daterangepicker.css' => ['theme' => 'vendor/admin-lte/plugins/daterangepicker/daterangepicker-bs3.css'], 'daterangepicker.css' => ['theme' => 'vendor/admin-lte/plugins/daterangepicker/daterangepicker-bs3.css'],
// Javascript // Javascript
'jquery.js' => ['theme' => 'vendor/jquery/dist/jquery.min.js'], 'jquery.js' => ['theme' => 'vendor/jquery/dist/jquery.min.js'],
'bootstrap.js' => ['theme' => 'vendor/bootstrap/dist/js/bootstrap.min.js'], 'bootstrap.js' => ['theme' => 'vendor/bootstrap/dist/js/bootstrap.min.js'],
...@@ -66,34 +65,34 @@ return [ ...@@ -66,34 +65,34 @@ return [
'daterangepicker.js' => ['theme' => 'vendor/admin-lte/plugins/daterangepicker/daterangepicker.js'], 'daterangepicker.js' => ['theme' => 'vendor/admin-lte/plugins/daterangepicker/daterangepicker.js'],
], ],
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Define which default assets will always be included in your pages | Define which default assets will always be included in your pages
| through the asset pipeline | through the asset pipeline
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
*/ */
'admin-required-assets' => [ 'admin-required-assets' => [
'css' => [ 'css' => [
'bootstrap.css', 'bootstrap.css',
'font-awesome.css', 'font-awesome.css',
'alertify.core.css', 'alertify.core.css',
'alertify.default.css', 'alertify.default.css',
'dataTables.bootstrap.css', 'dataTables.bootstrap.css',
'AdminLTE.css', 'AdminLTE.css',
'AdminLTE.all.skins.css', 'AdminLTE.all.skins.css',
'asgard.css', 'asgard.css',
], ],
'js' => [ 'js' => [
'jquery.js', 'jquery.js',
'bootstrap.js', 'bootstrap.js',
'mousetrap.js', 'mousetrap.js',
'alertify.js', 'alertify.js',
'icheck.js', 'icheck.js',
'jquery.dataTables.js', 'jquery.dataTables.js',
'dataTables.bootstrap.js', 'dataTables.bootstrap.js',
'jquery.slug.js', 'jquery.slug.js',
'keypressAction.js', 'keypressAction.js',
'app.js', 'app.js',
], ],
], ],
]; ];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment