31 lines
1,022 B
PHP
31 lines
1,022 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use App\Http\Middleware\HandleAppearance;
|
||
|
|
use App\Http\Middleware\HandleInertiaRequests;
|
||
|
|
use Illuminate\Foundation\Application;
|
||
|
|
use Illuminate\Foundation\Configuration\Exceptions;
|
||
|
|
use Illuminate\Foundation\Configuration\Middleware;
|
||
|
|
use Illuminate\Http\Middleware\AddLinkHeadersForPreloadedAssets;
|
||
|
|
|
||
|
|
return Application::configure(basePath: dirname(__DIR__))
|
||
|
|
->withRouting(
|
||
|
|
web: __DIR__.'/../routes/web.php',
|
||
|
|
commands: __DIR__.'/../routes/console.php',
|
||
|
|
health: '/up',
|
||
|
|
)
|
||
|
|
->withProviders([
|
||
|
|
App\Modules\Movies\Providers\MoviesServiceProvider::class,
|
||
|
|
])
|
||
|
|
->withMiddleware(function (Middleware $middleware): void {
|
||
|
|
$middleware->encryptCookies(except: ['appearance', 'sidebar_state']);
|
||
|
|
|
||
|
|
$middleware->web(append: [
|
||
|
|
HandleAppearance::class,
|
||
|
|
HandleInertiaRequests::class,
|
||
|
|
AddLinkHeadersForPreloadedAssets::class,
|
||
|
|
]);
|
||
|
|
})
|
||
|
|
->withExceptions(function (Exceptions $exceptions): void {
|
||
|
|
//
|
||
|
|
})->create();
|