Skip to content

Commit

Permalink
updated user seeder
Browse files Browse the repository at this point in the history
  • Loading branch information
A1Gard committed Dec 18, 2024
1 parent 6e478ce commit 76c0f2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion database/seeders/UserSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function run(): void
$user->assignRole('user');
$user->save();

User::factory(50)->create();
// User::factory(50)->create();

}
}
2 changes: 1 addition & 1 deletion docs/3-seeding.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Seeding is a method to generate fake or sample data, allowing for an easier star

The default seeders generate the following data:

- **Users**: 53 users (the first user is essential for login)
- **Users**: 3 users (the first user is essential for login)
- **Groups**: 6 groups
- **Posts**: 55 posts
- **States & Cities**: 31 states and 1,111 cities for user location selection
Expand Down

0 comments on commit 76c0f2e

Please sign in to comment.