Blame view

database/factories/ModelFactory.php 679 Bytes
e77200db5   nologostudio.ru   Initial commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  <?php
  
  /*
  |--------------------------------------------------------------------------
  | Model Factories
  |--------------------------------------------------------------------------
  |
  | Here you may define all of your model factories. Model factories give
  | you a convenient way to create models for testing and seeding your
  | database. Just tell the factory how a default model should look.
  |
  */
  
  $factory->define(FootyRoom\User\User::class, function ($faker) {
      return [
          'username' => $faker->name,
          'email' => $faker->email,
          'password' => $faker->password,
          'remember_token' => $faker->word,
          'user_id' => $faker->randomDigit,
      ];
  });