app.php 657 B

123456789101112131415161718192021
  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. $middleware->alias([
  13. 'admin' => \App\Http\Middleware\Admin::class,
  14. 'auth' => \App\Http\Middleware\User::class,
  15. ]);
  16. })
  17. ->withExceptions(function (Exceptions $exceptions) {
  18. //
  19. })->create();