mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
An updated set of source files and initialization was provided by streamline to address issues observed during initial testing. These files have been updated in order to generate a new set of app images.
41 lines
1.4 KiB
PHP
41 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Streamline\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class HivGenderBaseViolence extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'mother_hiv_positive',
|
|
'has_been_sick_last_3_months',
|
|
'has_recurring_skin_problem',
|
|
'has_lost_weight_last_3_months',
|
|
'has_had_tb',
|
|
'is_growing_well',
|
|
'tested_for_hiv_in_past_12_months',
|
|
'had_tb_or_presumptive_tb',
|
|
'sti_symptoms_present',
|
|
'diagnosed_with_hepatitis_b_or_c',
|
|
'experienced_or_caused_sexual_violence',
|
|
'reactive_hiv_self_test_result',
|
|
'identified_through_index_client',
|
|
'exposed_to_hiv_positive_or_unknown_source',
|
|
'hiv_symptoms_without_recent_test',
|
|
'tested_for_hiv_last_3_months',
|
|
'tested_for_hiv_last_12_months',
|
|
'unprotected_sex_with_partner_of_unknown_hiv_status',
|
|
'unprotected_sex_with_hiv_positive_partner',
|
|
'shared_needles_or_piercing_objects',
|
|
'experienced_threats_in_past_12_months',
|
|
'prevented_from_accessing_healthcare_in_past_12_months',
|
|
'experienced_physical_violence_in_past_12_months',
|
|
'experienced_unwanted_touching_of_private_parts_in_past_12_months',
|
|
'experienced_forced_sex_in_past_12_months',
|
|
'experienced_condom_refusal_in_past_12_months',
|
|
];
|
|
}
|