Auth: convert auth views and verification email to Nova layout
This commit is contained in:
@@ -23,7 +23,17 @@ class UserFactory extends Factory
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
$username = Str::lower(Str::slug(fake()->unique()->userName(), '-'));
|
||||
$username = preg_replace('/[^a-z0-9_-]/', '-', $username) ?: 'user';
|
||||
$username = substr(trim($username, '-_'), 0, 20);
|
||||
if ($username === '') {
|
||||
$username = 'user' . fake()->unique()->numberBetween(100, 99999);
|
||||
}
|
||||
|
||||
return [
|
||||
'username' => $username,
|
||||
'username_changed_at' => now()->subDays(120),
|
||||
'onboarding_step' => 'complete',
|
||||
'name' => fake()->name(),
|
||||
'email' => fake()->unique()->safeEmail(),
|
||||
'email_verified_at' => now(),
|
||||
|
||||
Reference in New Issue
Block a user