This commit is contained in:
paoloar77
2024-05-18 18:58:38 +02:00
parent 8c88310cad
commit 501809f74a

View File

@@ -6201,9 +6201,13 @@ Route::get('/qtanegativa', function () {
$mydatestr = $article->DataPubblicazione;
$product_id = $article->IdArticolo;
echo '[' . $ind . ']' . $sep . $mydatestr . $sep . $article->Id . $sep . $article->IdArticolo . $sep . $article->Titolo . $sep . $article->DescrizioneStatoProdotto . $sep . $article->DescrizioneFormato . '[Quantita = ' . $article->QtaDisponibile . '] <br>';
// $prodotti = Product::where('name', $titolo)->get();
//$sku = Product::where('sku',6563)->first();
$prodotto = Product::find($product_id);
$label = $prodotto['_wpro_label_variable'];
echo " label=" . $label;
$ind++;
}
});