This commit is contained in:
paoloar77
2024-05-21 01:11:16 +02:00
parent 3d72295adb
commit be3c830afe

View File

@@ -215,7 +215,15 @@ function loadArticleByIdArticle($id, $checkprevendita = false)
return false;
}
return dd($articles);
$ris = dd($articles);
$product = Product::where('sku', $id)->first();
$ris .= 'Product:';
$ris .= dd($product);
return $ris;
} catch (\Exception $e) {
return "Errore: " . $e->getMessage();