group( function() { Route::get('/', function () { return Inertia::render('Index'); }); Route::get('/import/fr24', function () { return Inertia::render('Fr24Import'); }); Route::get('/dashboard', function () { return Inertia::render('Dashboard'); })->middleware(['auth', 'verified'])->name('dashboard'); Route::middleware('auth')->group(function () { Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit'); Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update'); Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy'); }); require __DIR__.'/auth.php'; } ); /** * API Routes */ Route::domain(config('app.api_domain'))->group(function () { Route::get('/', function () { return response()->json(['message' => 'Welcome to the FlightsGoneBy API']); }); Route::get('airlines/logos/tail/{code}', [LogoController::class, 'getLogoByCode']) ->where('code', '[A-Za-z0-9]{2,3}'); });