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.

app.php 562B

12345678910111213141516171819
  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. })
  15. ->withExceptions(function (Exceptions $exceptions) {
  16. //
  17. })->create();