mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
19 lines
496 B
PHP
19 lines
496 B
PHP
<?php
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(App\Models\AddressBook::class, function (Faker $faker) {
|
|
return [
|
|
'type' => 1,
|
|
'reference' => $faker->firstName.' '.$faker->lastName,
|
|
'contact' => $faker->phoneNumber,
|
|
'street_one' => $faker->streetAddress,
|
|
'city' => $faker->city,
|
|
'state' => $faker->state,
|
|
'post_code' => $faker->postcode,
|
|
'country' => 'Malaysia',
|
|
'default' => 1,
|
|
'billing' => 1
|
|
];
|
|
});
|