app.php 819 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. use Illuminate\Foundation\Application;
  3. use Illuminate\Foundation\Configuration\Exceptions;
  4. use Illuminate\Foundation\Configuration\Middleware;
  5. $app = 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. $middleware->alias([
  14. 'coach' => \App\Http\Middleware\Coach::class,
  15. ]);
  16. })
  17. ->withExceptions(function (Exceptions $exceptions) {
  18. $exceptions->dontReport([
  19. //
  20. ]);
  21. })->create();
  22. $app->singleton(
  23. Illuminate\Contracts\Debug\ExceptionHandler::class,
  24. App\Exceptions\Handler::class
  25. );
  26. return $app;