aa
This commit is contained in:
@@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user