This commit is contained in:
paoloar77
2024-07-11 14:00:53 +02:00
parent bd65cad63f
commit 163c8abd5c

View File

@@ -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 () {