mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 20:44:01 +00:00
21 lines
533 B
PHP
21 lines
533 B
PHP
<?php
|
|
|
|
/** @var \Illuminate\Database\Eloquent\Factory $factory */
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(App\Models\Address::class, function (Faker $faker) {
|
|
|
|
return [
|
|
'company_id' => $faker->numberBetween(1, 30),
|
|
'street_one' => $faker->streetAddress,
|
|
'street_two' => $faker->streetAddress,
|
|
'city' => $faker->city,
|
|
'state' => $faker->state,
|
|
'post_code' => $faker->postcode,
|
|
'country' => $faker->country,
|
|
'default' => 1,
|
|
'billing' => 1
|
|
];
|
|
});
|