Skip to content

Commit

Permalink
Merge pull request #32 from devaslanphp/dev
Browse files Browse the repository at this point in the history
Default user seeder enhancement
  • Loading branch information
heloufir authored Jan 12, 2023
2 parents 278798e + 940e256 commit 7186372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/seeders/DefaultUserSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function run()
User::create([
'name' => 'John DOE',
'email' => '[email protected]',
'password' => '$2a$12$h/.Jq3QGHYoJBLBo8hw1mOtJOmtU.BVJFbBWFC7XAVXmE5gOjdXV.', // Passw@rd
'password' => bcrypt('Passw@rd'),
'email_verified_at' => now()
]);
}
Expand Down

0 comments on commit 7186372

Please sign in to comment.