mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-13 19:51:30 +00:00
updated streamline-setup v2
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<?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
|
||||
];
|
||||
});
|
||||
Reference in New Issue
Block a user