Skip to content

Commit

Permalink
Edit default admin password in seeder
Browse files Browse the repository at this point in the history
  • Loading branch information
danon committed Oct 9, 2023
1 parent f27382d commit 92e55a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database/seeders/UsersTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ public function run()
{
\Coyote\User::create([
'name' => 'admin',
'email' => 'admin@4programmers.net',
'password' => bcrypt('123')
'email' => 'admin@localhost',
'password' => bcrypt('admin')
]);

\factory(\Coyote\User::class, 10)->create();
Expand Down

0 comments on commit 92e55a0

Please sign in to comment.