From 9efa7127617431c6536491537d39c66a8d091dd2 Mon Sep 17 00:00:00 2001 From: paoloar77 Date: Sat, 18 May 2024 19:08:53 +0200 Subject: [PATCH] test --- routes/web.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/routes/web.php b/routes/web.php index 6dbe70ef..e85c483d 100644 --- a/routes/web.php +++ b/routes/web.php @@ -6204,9 +6204,8 @@ Route::get('/qtanegativa', function () { $sku = $article->IdArticolo; echo '[' . $ind . ']' . $sep . $mydatestr . $sep . $article->Id . $sep . $article->IdArticolo . $sep . $article->Titolo . $sep . $article->DescrizioneStatoProdotto . $sep . $article->DescrizioneFormato . '[Quantita = ' . $article->QtaDisponibile . ']
'; - $prodotto = Product::where('sku', $sku); + $prodotto = Product::where('sku', $sku)->first(); if ($prodotto) { - dd($prodotto); showarray($prodotto); }