Browse Source

Add comment with the value of the hashed password

Sjors Ottjes 6 years ago
parent
commit
c3d3dc1403
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),
     ];
 });