From b017c0b756d369125c969a208909494b8a3484d6 Mon Sep 17 00:00:00 2001 From: josh Date: Wed, 1 Apr 2026 12:33:20 +1000 Subject: [PATCH] Logo API --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 3b8f015..5c81f2a 100644 --- a/routes/web.php +++ b/routes/web.php @@ -7,5 +7,5 @@ Route::get('/', function () { return response()->json(['message' => 'Welcome to Dredgy\'s Flights API']); }); -Route::get('airlines/logos/{code}', [LogoController::class, 'getLogoByCode']) +Route::get('airlines/logos/tail/{code}', [LogoController::class, 'getLogoByCode']) ->where('code', '[A-Za-z0-9]{2,3}');