Simple problems require simple solutions
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
598 B

  1. <?php
  2. use Illuminate\Foundation\Application;
  3. use Illuminate\Foundation\Configuration\Exceptions;
  4. use Illuminate\Foundation\Configuration\Middleware;
  5. return Application::configure(basePath: dirname(__DIR__))
  6. ->withRouting(
  7. web: __DIR__.'/../routes/web.php',
  8. commands: __DIR__.'/../routes/console.php',
  9. health: '/up',
  10. )
  11. ->withMiddleware(function (Middleware $middleware) {
  12. $middleware->validateCsrfTokens(except: [
  13. 'calculate-duration',
  14. ]);
  15. })
  16. ->withExceptions(function (Exceptions $exceptions) {
  17. //
  18. })->create();