ModelFactory.php 556 B

12345678910111213141516171819
  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->email,
  16. ];
  17. });