From 1a008371efa5110651cfff9effd360f70f2538be Mon Sep 17 00:00:00 2001 From: paoloar77 Date: Fri, 17 May 2024 12:22:52 +0200 Subject: [PATCH] test --- app/Console/Commands/TestPao.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Console/Commands/TestPao.php b/app/Console/Commands/TestPao.php index 8158092d..3f8f4ea5 100644 --- a/app/Console/Commands/TestPao.php +++ b/app/Console/Commands/TestPao.php @@ -96,8 +96,11 @@ class TestPao extends Command $log .= "Quanti Articoli: " . $articles->count(); + $ind = 0; foreach ($articles as $article) { try { + $ind++; + echo "\nArticolo " . $ind; if (is_array($article)) { $strarticolo = json_encode($article, JSON_PRETTY_PRINT); if ($strarticolo !== false) {