Guest User

Untitled

a guest
Oct 10th, 2024
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?php
  2.  
  3. use Illuminate\Foundation\Application;
  4. use Illuminate\Foundation\Configuration\Exceptions;
  5. use Illuminate\Foundation\Configuration\Middleware;
  6.  
  7. return Application::configure(basePath: dirname(__DIR__))
  8. ->withRouting(
  9. web: __DIR__.'/../routes/web.php',
  10. commands: __DIR__.'/../routes/console.php',
  11. health: '/up',
  12. )
  13. ->withMiddleware(function (Middleware $middleware) {
  14. //
  15. })
  16. ->withExceptions(function (Exceptions $exceptions) {
  17. //
  18. })->create();
Advertisement
Add Comment
Please, Sign In to add comment