Files
landing-api/routes/api.php
T
2026-07-09 13:52:11 +02:00

11 lines
178 B
PHP

<?php
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
Route::get('/health', function () {
return response()->json([
'status' => 'ok'
]);
});