mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 04:14:05 +00:00
14 lines
428 B
PHP
14 lines
428 B
PHP
<?php
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(App\Models\Company::class, function (Faker $faker) {
|
|
return [
|
|
'name' => $faker->firstName.' '.$faker->companySuffix,
|
|
'marking' => 'CIEF/'.$faker->numerify('###').$faker->regexify('[A-Z]{3}'),
|
|
'email' => $faker->companyEmail,
|
|
'registration_no' => $faker->numerify('######-W'),
|
|
'tax_no' => $faker->numerify('KMTAX####')
|
|
];
|
|
});
|