'Bicicleta Venzo Loki R29', 'sku' => 'BIC-VEN-001', 'price' => 450000, 'cost' => 300000, 'stock_quantity' => 2, 'min_stock_alert' => 1, 'type' => 'bike', // bike, accessory, clothing, spare ], [ 'name' => 'Cámara 29 Valvula Auto', 'sku' => 'CAM-29-A', 'price' => 5000, 'cost' => 2500, 'stock_quantity' => 50, 'min_stock_alert' => 10, 'type' => 'accessory', ], [ 'name' => 'Servicio de Lavado', 'sku' => 'SRV-LAV', 'price' => 3000, 'cost' => 0, 'stock_quantity' => 999, 'min_stock_alert' => 0, 'type' => 'service', ], ]; // BUCLE DE CARGA foreach ($products as $item) { Product::updateOrCreate( ['sku' => $item['sku']], [ 'name' => $item['name'], 'price' => $item['price'], 'cost' => $item['cost'] ?? 0, 'stock_quantity' => $item['stock_quantity'] ?? 0, 'min_stock_alert' => $item['min_stock_alert'] ?? 5, 'type' => $item['type'] ?? 'accessory', 'description' => $item['description'] ?? null, ] ); } } }