heizung/routes/web.php

17 lines
409 B
PHP
Raw Permalink Normal View History

<?php
use Illuminate\Support\Facades\Route;
use App\Models\Device;
Route::get('/', function () {
$device = Device::first();
return response()->json([
'app'=>'Heizung',
'status'=>'running',
'db'=>'ok',
'device_loaded'=>$device?->name,
'laravel'=>app()->version(),
'php'=>PHP_VERSION,
'time'=>now()->format('Y-m-d H:i:s'),
]);
});
Route::get('/health', fn() => response()->json(['ok'=>true]));