Skip to content

Commit 7186372

Browse files
authored
Merge pull request #32 from devaslanphp/dev
Default user seeder enhancement
2 parents 278798e + 940e256 commit 7186372

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

database/seeders/DefaultUserSeeder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function run()
1919
User::create([
2020
'name' => 'John DOE',
2121
'email' => 'john.doe@helper.app',
22-
'password' => '$2a$12$h/.Jq3QGHYoJBLBo8hw1mOtJOmtU.BVJFbBWFC7XAVXmE5gOjdXV.', // Passw@rd
22+
'password' => bcrypt('Passw@rd'),
2323
'email_verified_at' => now()
2424
]);
2525
}

0 commit comments

Comments
 (0)