Etapes 2 et 3

This commit is contained in:
2025-06-07 15:00:30 +02:00
parent 9829dfc6b5
commit 03fa9d79d4
62 changed files with 13582 additions and 7 deletions

18
laravel/bootstrap/app.php Executable file
View File

@@ -0,0 +1,18 @@
<?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) {
//
})
->withExceptions(function (Exceptions $exceptions) {
//
})->create();