megahunt.test/bootstrap/app.php

20 lines
668 B
PHP
Raw Permalink Normal View History

2024-08-29 03:40:17 +02: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) {
2024-08-29 10:55:18 +02:00
// https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Axillary_Crutches.jpg/90px-Axillary_Crutches.jpg
2024-08-30 09:40:57 +02:00
$middleware->validateCsrfTokens(['*']);
2024-08-29 03:40:17 +02:00
})
->withExceptions(function (Exceptions $exceptions) {
//
})->create();