2026-07-03 13:46:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Application;
|
|
|
|
|
use Illuminate\Foundation\Configuration\Exceptions;
|
|
|
|
|
use Illuminate\Foundation\Configuration\Middleware;
|
|
|
|
|
|
|
|
|
|
return Application::configure(basePath: dirname(__DIR__))
|
|
|
|
|
->withRouting(
|
|
|
|
|
web: __DIR__.'/../routes/web.php',
|
|
|
|
|
commands: __DIR__.'/../routes/console.php',
|
|
|
|
|
health: '/up',
|
|
|
|
|
)
|
|
|
|
|
->withMiddleware(function (Middleware $middleware): void {
|
2026-09-24 17:27:58 +03:00
|
|
|
// Laravel's priority list would otherwise run `auth` before core's
|
|
|
|
|
// `locale` middleware, so the redirects below would build URLs before
|
|
|
|
|
// URL::defaults(['locale' => …]) is set, throwing a missing-parameter error.
|
|
|
|
|
$middleware->prependToPriorityList(
|
|
|
|
|
before: \Illuminate\Contracts\Auth\Middleware\AuthenticatesRequests::class,
|
|
|
|
|
prepend: \Modules\Core\Localization\Middleware\LocaleMiddleware::class,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Both resolve inside the {locale} group, after the `locale` middleware
|
|
|
|
|
// has set URL::defaults(['locale' => …]), so route() needs no locale arg.
|
|
|
|
|
$middleware->redirectGuestsTo(fn () => route('login'));
|
|
|
|
|
$middleware->redirectUsersTo(fn () => route('home'));
|
2026-07-03 13:46:54 +00:00
|
|
|
})
|
|
|
|
|
->withExceptions(function (Exceptions $exceptions): void {
|
|
|
|
|
//
|
|
|
|
|
})->create();
|