mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
18 lines
553 B
PHP
Executable File
18 lines
553 B
PHP
Executable File
<?php
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(Streamline\Models\Diagnosis::class, function (Faker $faker) {
|
|
return [
|
|
'name' => str_random(10),//$faker->name,
|
|
'icd10_code' => str_random(10),
|
|
'hmis_no_outpatient' => str_random(10),
|
|
'hmis_no_inpatient' => str_random(10),
|
|
'prompts' => str_random(255),
|
|
'chronic_status' => $faker->boolean,
|
|
'reference_areas' => $faker->url,
|
|
'reference_names' => str_random(191),
|
|
'hmis_category' => $faker->unique()->randomDigit
|
|
];
|
|
});
|