您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

app.php 551B

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