diff --git a/routes/web.php b/routes/web.php index 6841289f..13875db1 100644 --- a/routes/web.php +++ b/routes/web.php @@ -5884,7 +5884,7 @@ Route::get('/test30/{id}', function ($id) { dd($clienti); }); Route::get('/testclientegm/{id}', function ($id) { - $cliente = Clientegm::where('IdInternet', $id)->first(); + $cliente = Clientegm::where('IdInternet', (int) $id)->first(); if ($cliente) { echo $cliente->Nominativo . ' '; echo $cliente->IdInternet . ' ';