2015-07-08 03:34:58 -04:00
|
|
|
<?php
|
|
|
|
|
2019-09-06 01:32:11 -04:00
|
|
|
/** @var \Illuminate\Database\Eloquent\Factory $factory */
|
2020-02-25 16:26:38 -05:00
|
|
|
|
2019-03-19 17:40:13 -04:00
|
|
|
use App\User;
|
2017-09-26 13:22:15 -04:00
|
|
|
use Faker\Generator as Faker;
|
2019-10-31 17:24:53 -04:00
|
|
|
use Illuminate\Support\Str;
|
2017-09-26 13:22:15 -04:00
|
|
|
|
2015-07-08 03:34:58 -04:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Model Factories
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2017-09-26 13:22:15 -04:00
|
|
|
| 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.
|
2015-07-08 03:34:58 -04:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2019-03-19 17:40:13 -04:00
|
|
|
$factory->define(User::class, function (Faker $faker) {
|
2015-07-08 03:34:58 -04:00
|
|
|
return [
|
|
|
|
'name' => $faker->name,
|
2016-09-22 13:40:58 -04:00
|
|
|
'email' => $faker->unique()->safeEmail,
|
2018-11-02 18:12:07 -04:00
|
|
|
'email_verified_at' => now(),
|
2019-03-19 17:40:13 -04:00
|
|
|
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
|
|
|
|
'remember_token' => Str::random(10),
|
2015-07-08 03:34:58 -04:00
|
|
|
];
|
|
|
|
});
|