updated streamline-setup v2

This commit is contained in:
2025-01-15 08:53:49 -08:00
committed by alec.turner
parent a2ce9248f0
commit 4b569f81b0
20228 changed files with 2932048 additions and 63204 deletions
@@ -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
];
});