[ ['code' => 'OLI001', 'name' => 'Oli Mesin 10W-40'], ['code' => 'OLI002', 'name' => 'Oli Gardan'], ], 'Aki & Kelistrikan' => [ ['code' => 'AKI001', 'name' => 'Aki Kering 12V'], ['code' => 'AKI002', 'name' => 'Regulator Rectifier'], ], 'Rem' => [ ['code' => 'REM001', 'name' => 'Kampas Rem Belakang'], ['code' => 'REM002', 'name' => 'Cakram Depan'], ], ]; foreach ($categories as $categoryName => $products) { $category = ProductCategory::firstOrCreate( ['name' => $categoryName], ['created_at' => now(), 'updated_at' => now()] ); foreach ($products as $product) { Product::updateOrCreate( ['code' => $product['code']], [ 'name' => $product['name'], 'description' => $product['name'], 'product_category_id' => $category->id ] ); } } } }