This commit is contained in:
2024-10-29 18:27:44 +05:00
parent e65e9be650
commit 2b943b3842
4 changed files with 24 additions and 5 deletions

View File

@@ -13,11 +13,8 @@ class DatabaseSeeder extends Seeder
*/
public function run(): void
{
// User::factory(10)->create();
User::factory()->create([
'name' => 'Test User',
'email' => 'test@example.com',
$this->call([
UserTableSeeder::class,
]);
}
}