This commit is contained in:
EwelinaLasowy
2022-01-17 10:37:41 +01:00
parent 7dca5d1e6c
commit fc4669568c
14 changed files with 41 additions and 23 deletions

View File

@@ -12,6 +12,8 @@ class DatabaseSeeder extends Seeder
public function run(): void
{
User::factory(35)->create();
User::factory(["email" => env("USER_EMAIL")])->create();
User::factory([
"email" => env("USER_EMAIL"),
])->create();
}
}