Commit 0ee96b43 authored by Nicolas Widart's avatar Nicolas Widart

Republishing modules configuration files

parent b7c25f19
<?php
return [
/*
|--------------------------------------------------------------------------
| The prefix that'll be used for the administration
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| The prefix that'll be used for the administration
|--------------------------------------------------------------------------
*/
'admin-prefix' => 'backend',
/*
......@@ -22,12 +22,12 @@ return [
*/
'admin-theme' => 'AdminLTE',
/*
|--------------------------------------------------------------------------
| Define which assets will be available through the asset manager
|--------------------------------------------------------------------------
| These assets are registered on the asset manager
*/
/*
|--------------------------------------------------------------------------
| Define which assets will be available through the asset manager
|--------------------------------------------------------------------------
| These assets are registered on the asset manager
*/
'admin-assets' => [
// Css
'bootstrap.css' => ['theme' => 'vendor/bootstrap/dist/css/bootstrap.min.css'],
......@@ -71,34 +71,36 @@ return [
'chart.js' => ['theme' => 'vendor/admin-lte/plugins/chartjs/Chart.js'],
],
/*
|--------------------------------------------------------------------------
| Define which default assets will always be included in your pages
| through the asset pipeline
|--------------------------------------------------------------------------
*/
'admin-required-assets' => [
'css' => [
'bootstrap.css',
'font-awesome.css',
'alertify.core.css',
'alertify.default.css',
'dataTables.bootstrap.css',
'AdminLTE.css',
'AdminLTE.all.skins.css',
'asgard.css',
],
'js' => [
'jquery.js',
'bootstrap.js',
'mousetrap.js',
'alertify.js',
'icheck.js',
'jquery.dataTables.js',
'dataTables.bootstrap.js',
'jquery.slug.js',
'keypressAction.js',
'app.js',
],
],
/*
|--------------------------------------------------------------------------
| Define which default assets will always be included in your pages
| through the asset pipeline
|--------------------------------------------------------------------------
*/
'admin-required-assets' => [
'css' => [
'bootstrap.css',
'font-awesome.css',
'alertify.core.css',
'alertify.default.css',
'dataTables.bootstrap.css',
'AdminLTE.css',
'AdminLTE.all.skins.css',
'asgard.css',
],
'js' => [
'jquery.js',
'bootstrap.js',
'mousetrap.js',
'alertify.js',
'icheck.js',
'jquery.dataTables.js',
'dataTables.bootstrap.js',
'jquery.slug.js',
'keypressAction.js',
'app.js',
'main.js',
'sisyphus.js',
],
],
];
......@@ -15,4 +15,14 @@ return [
'description' => 'core::settings.template',
'view' => 'core::fields.select-theme',
],
'google-analytics' => [
'description' => 'core::settings.google-analytics',
'view' => 'textarea',
'translatable' => false,
],
'locales' => [
'description' => 'core::settings.locales',
'view' => 'core::fields.select-locales',
'translatable' => false,
],
];
<?php
return [
'dashboard.grid' => [
'save',
'reset',
],
'dashboard' => [
'index',
],
......
......@@ -20,4 +20,12 @@ return [
|--------------------------------------------------------------------------
*/
'max-file-size' => '5',
/*
|--------------------------------------------------------------------------
| Determine the max total media folder size
|--------------------------------------------------------------------------
| Expressed in bytes
*/
'max-total-size' => 1000000000,
];
......@@ -8,4 +8,8 @@ return [
'update',
'destroy',
],
'media.media-grid' => [
'index',
'ckIndex',
]
];
......@@ -2,10 +2,21 @@
return [
'smallThumb' => [
'fit' => [
'resize' => [
'width' => 50,
'height' => 50,
'height' => null,
'callback' => function ($constraint) {
$constraint->aspectRatio();
$constraint->upsize();
},
],
],
'mediumThumb' => [
'resize' => [
'width' => 180,
'height' => null,
'callback' => function ($constraint) {
$constraint->aspectRatio();
$constraint->upsize();
},
],
......
......@@ -23,12 +23,13 @@ return [
| only supported by the Sentinel user driver
*/
'login-columns' => ['email'],
/*
|--------------------------------------------------------------------------
| Fillable user fields
|--------------------------------------------------------------------------
| Set the fillable user fields, those fields will be mass assigned
*/
|--------------------------------------------------------------------------
| Fillable user fields
|--------------------------------------------------------------------------
| Set the fillable user fields, those fields will be mass assigned
*/
'fillable' => [
'email',
'password',
......
......@@ -7,4 +7,23 @@ return [
'disable',
'enable',
],
/*'workshop.workbench' => [
'index',
'generate',
'migrate',
'install',
'seed',
],
'workshop.generate' => [
'generate',
],
'workshop.install' => [
'install',
],
'workshop.migrate' => [
'migrate',
],
'workshop.seed' => [
'seed',
],*/
];
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