Skip to content

Instantly share code, notes, and snippets.

@caiovncius
Created March 26, 2025 12:04
Show Gist options
  • Save caiovncius/6ee7748973cddca59ef3149cdf729a18 to your computer and use it in GitHub Desktop.
Save caiovncius/6ee7748973cddca59ef3149cdf729a18 to your computer and use it in GitHub Desktop.
<?php
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
use App\Http\Middleware\HandleInertiaRequests;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
web: __DIR__.'/../routes/web.php',
commands: __DIR__.'/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware) {
//
})
->withMiddleware(function (Middleware $middleware) {
$middleware->web(append: [
HandleInertiaRequests::class,
]);
})
->withExceptions(function (Exceptions $exceptions) {
//
})->create();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment