Skip to content

Commit

Permalink
FixedFactoryUserModel_addedDeletedFildPassword
Browse files Browse the repository at this point in the history
  • Loading branch information
JustTheDude001 committed May 15, 2024
1 parent a7e7e0c commit 6aebc9c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions database/factories/UserFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public function definition(): array
'dni' => $faker->unique()->regexify('[1-9]{8}[A-Z]'),
'email' => $faker->unique()->safeEmail(),
'email_verified_at' => now(),
'password' => bcrypt('password123'), // O puedes usar Faker para generar contraseñas aleatorias
];
}

Expand Down

0 comments on commit 6aebc9c

Please sign in to comment.