29 lines
669 B
PHP
29 lines
669 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use App\Models\ProductGroup;
|
|
|
|
class ProductAttrSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
ProductGroup::truncate();
|
|
ProductGroup::create([
|
|
'name' => '华为智慧屏',
|
|
'attrs' => [
|
|
['title' => '属性组', 'value' => implode(PHP_EOL, ['分辨率', '摄像头', '能效等级'])]
|
|
],
|
|
'specs' => [
|
|
['title' => '尺寸', 'value' => implode(PHP_EOL, ['55英寸', '65英寸', '75英寸'])]
|
|
]
|
|
]);
|
|
}
|
|
}
|