13 lines
456 B
PHP

<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\GpsController;
Route::get('/health', fn () => response()->json(['ok' => true]));
Route::post('/gps', [GpsController::class, 'store']);
Route::get('/gps/latest', [GpsController::class, 'latest']);
Route::get('/gps/track', [GpsController::class, 'track']);
Route::get('/gps/latest-any', [GpsController::class, 'latestAny']);
Route::get('/gps/recent', [GpsController::class, 'recent']);