mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 04:23:59 +00:00
15 lines
357 B
PHP
15 lines
357 B
PHP
<?php
|
|
|
|
/** @var \Illuminate\Database\Eloquent\Factory $factory */
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(App\Models\Company::class, function (Faker $faker) {
|
|
|
|
return [
|
|
'reference_no' => $faker->numerify('#########'),
|
|
'name' => $faker->company.' '.$faker->companySuffix,
|
|
'type' => $faker->randomDigitNotNull,
|
|
];
|
|
});
|