1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.1 KiB
PHP

<?php
namespace Database\Seeders;
use App\Models\Cat;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class CatSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
//
Cat::factory()->create(['name' => 'موبایل','slug' => 'موبایل']);
Cat::factory()->create(['name' => 'تبلت','slug' => 'تبلت']);
Cat::factory()->create(['name' => 'برندها','slug' => 'برندها']);
Cat::factory()->create(['name' => 'اپل','slug' => 'اپل', 'parent_id' => 3]);
Cat::factory()->create(['name' => 'سامسونگ','slug' => 'سامسونگ', 'parent_id' => 3]);
Cat::factory()->create(['name' => 'لپ‌تاپ و PC','slug' => 'لپ‌تاپ-و-PC']);
Cat::factory()->create(['name' => 'آی‌مک','slug' => 'iMac', 'parent_id' => 6]);
Cat::factory()->create(['name' => 'آیفون','slug' => 'iphone', 'parent_id' => 1]);
Cat::factory()->create(['name' => 'آی‌پد','slug' => 'iPad', 'parent_id' => 2]);
}
}