芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/acsolutionbd.com/main/database/seeders/ProductLabelSeeder.php
truncate(); $productCollections = [ [ 'name' => 'Hot', 'color' => '#ec2434', ], [ 'name' => 'New', 'color' => '#00c9a7', ], [ 'name' => 'Sale', 'color' => '#fe9931', ], ]; foreach ($productCollections as $item) { ProductLabel::query()->create($item); } DB::table('ec_product_labels_translations')->truncate(); $translations = [ [ 'name' => 'Nổi bật', ], [ 'name' => 'Mới', ], [ 'name' => 'Giảm giá', ], ]; foreach ($translations as $index => $item) { $item['lang_code'] = 'vi'; $item['ec_product_labels_id'] = $index + 1; DB::table('ec_product_labels_translations')->insert($item); } } }