diff --git a/routes/web.php b/routes/web.php index 1cf418ab..459c1081 100644 --- a/routes/web.php +++ b/routes/web.php @@ -5885,8 +5885,12 @@ Route::get('/test30/{id}', function ($id) { dd($clienti); }); Route::get('/testclientegm/{id}', function ($id) { - $clienti = Clientegm::where('IdInternet', $id)->first(); - dd($clienti); + $cliente = Clientegm::where('IdInternet', $id)->first(); + if ($cliente) { + echo $cliente->Nominativo . ' '; + echo $cliente->IdInternet . ' '; + } + //dd($cliente); }); Route::get('/test31', function () {