more fixes
This commit is contained in:
27
config/controlpanel.php
Normal file
27
config/controlpanel.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| cPad Control Panel Configuration
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This file contains the configuration options for cPad Control Panel.
|
||||
| You can publish the full configuration using:
|
||||
| php artisan vendor:publish --provider="Klevze\ControlPanel\ServiceProvider"
|
||||
|
|
||||
*/
|
||||
|
||||
'enabled' => env('CPAD_ENABLED', true),
|
||||
|
||||
'debug' => env('CPAD_DEBUG', false),
|
||||
|
||||
'route_prefix' => env('CPAD_ROUTE_PREFIX', 'admin'),
|
||||
|
||||
'middleware' => ['web', 'auth'],
|
||||
|
||||
'permissions' => [
|
||||
'enabled' => true,
|
||||
'super_admin_role' => 'super-admin',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user