app.php 568B

1234567891011121314151617181920
  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. api: __DIR__.'/../routes/api.php',
  9. commands: __DIR__.'/../routes/console.php',
  10. health: '/up',
  11. )
  12. ->withMiddleware(function (Middleware $middleware): void {
  13. //
  14. })
  15. ->withExceptions(function (Exceptions $exceptions): void {
  16. //
  17. })->create();