You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ModelFactory.php 622B

123456789101112131415161718192021
  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) {
  13. return [
  14. 'name' => $faker->name,
  15. 'email' => $faker->email,
  16. 'password' => str_random(10),
  17. 'remember_token' => str_random(10),
  18. ];
  19. });