app.php 638 B

12345678910111213141516171819202122
  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) {
  13. //
  14. $middleware->use([
  15. \App\Exceptions\Handler::class
  16. ]);
  17. })
  18. ->withExceptions(function (Exceptions $exceptions) {
  19. //
  20. })->create();