Uploaded From CV. Swandhana Server

This commit is contained in:
Duidev Software House
2025-02-25 01:50:20 +00:00
committed by dwi_vendor
co-authored by dwi_vendor
parent ffddee22df
commit 27064a1f7e
15185 changed files with 2328844 additions and 0 deletions
+72
View File
@@ -0,0 +1,72 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Enable Adminer
|--------------------------------------------------------------------------
|
*/
'enabled' => env('ADMINER_ENABLED', true),
/*
|--------------------------------------------------------------------------
| Auto Login
|--------------------------------------------------------------------------
|
| Enable autologin to database
|
| ATTENTION: Please only enable autologin with authenticated protection
|
*/
'autologin' => env('ADMINER_AUTO_LOGIN', false),
/*
|--------------------------------------------------------------------------
| Route Prefix
|--------------------------------------------------------------------------
|
| You may customize route prefix. (default: 'adminer')
|
*/
'route_prefix' => env('ADMINER_ROUTE_PREFIX', 'adminer'),
/*
|--------------------------------------------------------------------------
| Middleware
|--------------------------------------------------------------------------
|
| Middleware for authentication protection
|
| Default laravel authentication middleware: 'auth'
|
| Multiple middleware allowed using array:
| Example:
| 'middleware' => ['auth', 'adminer']
|
*/
'middleware' => 'auth',
/*
|--------------------------------------------------------------------------
| Plugins
|--------------------------------------------------------------------------
|
| Enable Adminer plugins loaded from /resources/adminer/plugins
|
| Example:
|
| With arguments...
| 'PluginClassName' => ['class', 'arguments', ...]
|
| or with a single argument
| 'PluginClassName' => 'argument'
|
| or without arguments
| 'PluginClassName'
|
*/
'plugins' => [
],
];