laravel-learn-bbs/database/factories/UserFactory.php

29 lines
849 B
PHP
Raw Normal View History

2017-12-24 14:17:18 +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.
|
*/
2017-12-30 20:23:09 +00:00
$factory->define(App\Models\User::class, function (Faker $faker) {
2017-12-24 14:17:18 +00:00
static $password;
2018-01-01 04:38:52 +00:00
$now = \Carbon\Carbon::now()->toDateTimeString();
2017-12-24 14:17:18 +00:00
return [
'name' => $faker->name,
'email' => $faker->unique()->safeEmail,
'password' => $password ?: $password = bcrypt('secret'),
'remember_token' => str_random(10),
2018-01-01 04:38:52 +00:00
'created_at' => $now,
'updated_at' => $now
2017-12-24 14:17:18 +00:00
];
});