mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 12:34:01 +00:00
18 lines
404 B
PHP
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
|
|
];
|
|
});
|