mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 12:34:06 +00:00
12 lines
214 B
PHP
12 lines
214 B
PHP
<?php
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(App\Contact::class, function (Faker $faker) {
|
|
return [
|
|
'user_id' => '1',
|
|
'com_id' => '1',
|
|
'status' => '1',
|
|
];
|
|
});
|