Skip to content
This repository has been archived by the owner on Dec 3, 2023. It is now read-only.

Commit

Permalink
Update DatabaseSeeder.php
Browse files Browse the repository at this point in the history
  • Loading branch information
kkamara committed Nov 30, 2023
1 parent 3173adf commit 02dc337
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions database/seeders/DatabaseSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ class DatabaseSeeder extends Seeder
*/
public function run(): void
{
User::factory()->create([
'first_name' => 'Jane',
'last_name' => 'Doe',
'email' => 'jane@doe.com',
]);
User::factory()->count(30)->create();
// User::factory()->create([
// 'first_name' => 'Jane',
// 'last_name' => 'Doe',
// 'email' => 'jane@doe.com',
// ]);
// User::factory()->count(30)->create();
}
}

0 comments on commit 02dc337

Please sign in to comment.