2018-04-15 23:56:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Model Factories
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This directory should contain each of the model factory definitions for
|
|
|
|
| your application. Factories provide a convenient way to generate new
|
|
|
|
| model instances for testing / seeding your application's database.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
$factory->define(App\User::class, function (Faker $faker) {
|
|
|
|
return [
|
2018-11-04 04:05:47 +00:00
|
|
|
'name' => $faker->name,
|
|
|
|
'username' => str_replace('.', '', $faker->unique()->userName),
|
|
|
|
'email' => str_random(8).$faker->unique()->safeEmail,
|
|
|
|
'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm', // secret
|
2018-04-15 23:56:48 +00:00
|
|
|
'remember_token' => str_random(10),
|
|
|
|
];
|
|
|
|
});
|