45 lines
912 B
PHP
45 lines
912 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Product;
|
|
use App\Models\User;
|
|
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
// User::factory(10)->create();
|
|
|
|
//User::factory()->create([
|
|
// 'name' => 'Test User',
|
|
// 'email' => 'test@example.com',
|
|
//]);
|
|
|
|
Product::create([
|
|
'name' => 'Ant Spray',
|
|
'description' => '',
|
|
'price' => 10000,
|
|
]);
|
|
|
|
|
|
Product::create([
|
|
'name' => 'Spider Spray',
|
|
'description' => '',
|
|
'price' => 25000,
|
|
]);
|
|
|
|
|
|
Product::create([
|
|
'name' => 'Infestation Spray',
|
|
'description' => '',
|
|
'price' => 50000,
|
|
]);
|
|
}
|
|
}
|