Files
portal/database/factories/ContactFactory.php
T
2020-08-12 04:16:41 +08:00

18 lines
404 B
PHP

<?php
/** @var \Illuminate\Database\Eloquent\Factory $factory */
use Faker\Generator as Faker;
$factory->define(App\Models\Contact::class, function (Faker $faker) {
return [
'company_id' => $faker->word,
'name' => $faker->word,
'designation' => $faker->word,
'email' => $faker->word,
'phone' => $faker->word,
'wechat_id' => $faker->word
];
});