Skip to content

Commit

Permalink
Set email_verified_at field value
Browse files Browse the repository at this point in the history
  • Loading branch information
relliv committed Aug 23, 2024
1 parent e75e123 commit 08ed164
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions database/seeders/Local/User/DefaultUserSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public function run(): void
User::create([
'email' => $user['email'],
'name' => $user['name'],
'email_verified_at' => now(),
// 'username' => $user['username'],
'password' => Hash::make($user['email']),
]);
Expand Down

0 comments on commit 08ed164

Please sign in to comment.