Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

app.php 513B

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