29 lines
914 B
PHP
29 lines
914 B
PHP
|
|
<?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.
|
||
|
|
|
|
||
|
|
*/
|
||
|
|
$myfaker = \Faker\Factory::create('zh_CN');
|
||
|
|
|
||
|
|
$factory->define(App\Models\User::class, function (Faker $faker) use($myfaker) {
|
||
|
|
static $password;
|
||
|
|
|
||
|
|
return [
|
||
|
|
'name' => $myfaker->name,
|
||
|
|
'mobile' => $myfaker->phoneNumber,
|
||
|
|
'email' => $myfaker->unique()->safeEmail,
|
||
|
|
'type' => $myfaker->randomElement(['single', 'marriage', NULL]),
|
||
|
|
'password' => $password ?: $password = bcrypt('secret'),
|
||
|
|
'remember_token' => str_random(10),
|
||
|
|
];
|
||
|
|
});
|