feat(assessments): layered clinical assessment engine end-to-end
Deploy Ladill Care / deploy (push) Successful in 1m26s
Deploy Ladill Care / deploy (push) Successful in 1m26s
Add a template-driven assessment system with universal intake, clinical pathways, disease instruments (stroke MVP + extended, diabetes, and ten specialty packs), scoring, patient outcome trends, REST/API + FHIR export, and Enterprise org-level assessment analytics. Seed packs and design/licensing docs ship for deploy and pre-GA review.
This commit is contained in:
@@ -99,6 +99,16 @@ class Patient extends Model
|
||||
return $this->hasMany(Visit::class, 'patient_id');
|
||||
}
|
||||
|
||||
public function assessments(): HasMany
|
||||
{
|
||||
return $this->hasMany(Assessment::class, 'patient_id');
|
||||
}
|
||||
|
||||
public function pathways(): HasMany
|
||||
{
|
||||
return $this->hasMany(PatientPathway::class, 'patient_id');
|
||||
}
|
||||
|
||||
public function investigationRequests(): HasMany
|
||||
{
|
||||
return $this->hasMany(InvestigationRequest::class, 'patient_id');
|
||||
|
||||
Reference in New Issue
Block a user