From 163c8abd5c5555800db0060b479fff43fc9bebe0 Mon Sep 17 00:00:00 2001 From: paoloar77 Date: Thu, 11 Jul 2024 14:00:53 +0200 Subject: [PATCH] aa --- routes/web.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 () {