35 lines
734 B
PHP
35 lines
734 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\ProductPart;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class ProductPartSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
foreach ([
|
|
'recommend' => [
|
|
'name' => '精品推荐',
|
|
'is_show' => true,
|
|
],
|
|
'vip' => [
|
|
'name' => '会员直通车',
|
|
'is_show' => true,
|
|
],
|
|
'guess'=> [
|
|
'name' => '猜你喜欢',
|
|
'is_show' => true,
|
|
],
|
|
] as $key => $values) {
|
|
ProductPart::firstOrCreate(['key' => $key], $values);
|
|
}
|
|
}
|
|
}
|