From 4adba9410975e99d2016ccc8dde976a56bb8af5b Mon Sep 17 00:00:00 2001 From: josh Date: Thu, 2 Apr 2026 21:26:45 +1000 Subject: [PATCH] Migration Fix --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 5c81f2a..236c6cd 100644 --- a/routes/web.php +++ b/routes/web.php @@ -4,7 +4,7 @@ use App\Http\Controllers\LogoController; use Illuminate\Support\Facades\Route; Route::get('/', function () { - return response()->json(['message' => 'Welcome to Dredgy\'s Flights API']); + return response()->json(['message' => 'Welcome to the FlightsGoneBy API']); }); Route::get('airlines/logos/tail/{code}', [LogoController::class, 'getLogoByCode'])