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();