From 6b025255e4be0b3bd120372f024d2f9e5a816c90 Mon Sep 17 00:00:00 2001 From: sam rolfe Date: Fri, 29 Aug 2025 14:44:55 +1000 Subject: [PATCH] Fixed routes/api.php --- routes/api.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/routes/api.php b/routes/api.php index d705cd2..ce48b60 100644 --- a/routes/api.php +++ b/routes/api.php @@ -1,6 +1,10 @@ + response()->json(['ok' => true])); + Route::post('/gps', [GpsController::class, 'store']); Route::get('/gps/latest', [GpsController::class, 'latest']); Route::get('/gps/track', [GpsController::class, 'track']); \ No newline at end of file