info('Starting sync of product properties JSON...'); // Using cursor to be memory efficient $products = Product::cursor(); $count = Product::count(); $bar = $this->output->createProgressBar($count); $bar->start(); foreach ($products as $product) { $product->syncPropertiesJson(); $bar->advance(); } $bar->finish(); $this->newLine(); $this->info('Sync completed successfully!'); } }