more fixes

This commit is contained in:
2026-03-12 07:22:38 +01:00
parent 547215cbe8
commit 4f576ceb04
226 changed files with 14380 additions and 4453 deletions

27
config/controlpanel.php Normal file
View 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',
],
];