Files

24 lines
633 B
PHP
Raw Permalink Normal View History

2025-11-04 10:19:07 +05:30
<?php
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
2025-12-15 11:03:30 +05:30
web: [
__DIR__.'/../routes/web.php',
__DIR__.'/../routes/channels.php',
],
api: __DIR__.'/../routes/api.php',
2025-11-04 10:19:07 +05:30
commands: __DIR__.'/../routes/console.php',
health: '/up',
)
2025-12-15 11:03:30 +05:30
->withMiddleware(function (Middleware $middleware) {
2025-11-04 10:19:07 +05:30
//
})
2025-12-15 11:03:30 +05:30
->withExceptions(function (Exceptions $exceptions) {
2025-11-04 10:19:07 +05:30
//
2025-12-15 11:03:30 +05:30
})
->create();