withRouting( web: __DIR__.'/../routes/web.php', api: __DIR__.'/../routes/api.php', commands: __DIR__.'/../routes/console.php', health: '/up', ) ->withMiddleware(function (Middleware $middleware) { // Add CORS middleware for API routes $middleware->api([ \Illuminate\Http\Middleware\HandleCors::class, ]); // Or if you want to apply CORS to all routes $middleware->append([ \Illuminate\Http\Middleware\HandleCors::class, ]); }) ->withExceptions(function (Exceptions $exceptions) { // })->create();