Browse Source

Merge pull request #4521 from SjorsO/patch-1

Add comment with the value of the hashed password
Taylor Otwell 6 years ago
parent
commit
1f7f915b3b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      database/factories/UserFactory.php

+ 1 - 1
database/factories/UserFactory.php

@@ -17,7 +17,7 @@ $factory->define(App\User::class, function (Faker $faker) {
     return [
         'name' => $faker->name,
         'email' => $faker->unique()->safeEmail,
-        'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm',
+        'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm', // secret
         'remember_token' => str_random(10),
     ];
 });