ModelFactory.php 950 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Model Factories
  5. |--------------------------------------------------------------------------
  6. |
  7. | Here you may define all of your model factories. Model factories give
  8. | you a convenient way to create models for testing and seeding your
  9. | database. Just tell the factory how a default model should look.
  10. |
  11. */
  12. $factory->define(App\User::class, function (Faker\Generator $faker) {
  13. return [
  14. 'name' => $faker->name,
  15. 'email' => $faker->safeEmail,
  16. // Use a precomputed hash of the word "secret" instead of using bcrypt directly.
  17. // Since bcrypt is intentionally slow, it can really slow down test suites in
  18. // large applications that use factories to generate models in many tests.
  19. 'password' => '$2y$10$oPCcCpaPQ69KQ1fdrAIL0eptYCcG/s/NmQZizJfVdB.QOXUn5mGE6',
  20. 'remember_token' => str_random(10),
  21. ];
  22. });