27 lines
738 B
PHP
27 lines
738 B
PHP
<?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',
|
|
],
|
|
]; |