mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 04:24:01 +00:00
19 lines
487 B
PHP
19 lines
487 B
PHP
<?php
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(App\Deliveryinfo::class, function (Faker $faker) {
|
|
return [
|
|
'id' => $faker,
|
|
'branch' => $faker->text,
|
|
'deli_info' => $faker->sentence,
|
|
'address' => $faker->text,
|
|
'city' => $faker->text,
|
|
'postcode' => $faker->text,
|
|
'state' => $faker->text,
|
|
'country' => $faker->text,
|
|
'contact_person' => $faker->name,
|
|
'contact_person_no' => $faker->text,
|
|
];
|
|
});
|