feat: Set email_verified_at for seeded user.

This commit is contained in:
Yoga Pangestu 2025-12-19 14:33:08 +07:00
parent ccc5d36c0e
commit ab4b04b1d8

View File

@ -18,6 +18,7 @@ public function run(): void
'email' => 'info.pangestuyoga@gmail.com',
'username' => 'pangestu',
'password' => Hash::make(config('auth.password_default')),
'email_verified_at' => now(),
]);
$user->assignRole('Developer');