28 lines
1.0 KiB
PHP
28 lines
1.0 KiB
PHP
<?php
|
|
|
|
use Illuminate\Foundation\Application;
|
|
use Illuminate\Foundation\Configuration\Exceptions;
|
|
use Illuminate\Foundation\Configuration\Middleware;
|
|
use App\Http\Middleware\CheckPermission;
|
|
use App\Http\Middleware\AdminOnly;
|
|
use App\Http\Middleware\ForceHttps;
|
|
|
|
return Application::configure(basePath: dirname(__DIR__))
|
|
->withRouting(
|
|
web: __DIR__.'/../routes/web.php',
|
|
commands: __DIR__.'/../routes/console.php',
|
|
health: '/up',
|
|
)
|
|
->withMiddleware(function (Middleware $middleware): void {
|
|
$middleware->alias([
|
|
'admin' => AdminOnly::class,
|
|
'permission' => CheckPermission::class,
|
|
]);
|
|
$middleware->trustProxies(at: '*');
|
|
// Web middleware defaults are already applied by the framework.
|
|
// Do NOT append EncryptCookies, StartSession, etc. here — they
|
|
// would run twice and corrupt session cookies, causing 419 errors.
|
|
})
|
|
->withExceptions(function (Exceptions $exceptions): void {
|
|
//
|
|
})->create(); |