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.
101 lines
2.5 KiB
PHP
101 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Models\Concerns\BelongsToOwner;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Illuminate\Support\Str;
|
|
|
|
class Consultation extends Model
|
|
{
|
|
use BelongsToOwner, SoftDeletes;
|
|
|
|
public const STATUS_DRAFT = 'draft';
|
|
|
|
public const STATUS_COMPLETED = 'completed';
|
|
|
|
protected $table = 'care_consultations';
|
|
|
|
protected $fillable = [
|
|
'uuid', 'owner_ref', 'visit_id', 'appointment_id', 'practitioner_id',
|
|
'patient_id', 'status', 'symptoms', 'clinical_notes',
|
|
'started_at', 'completed_at', 'completed_by',
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'started_at' => 'datetime',
|
|
'completed_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
protected static function booted(): void
|
|
{
|
|
static::creating(function (Consultation $consultation) {
|
|
if (! $consultation->uuid) {
|
|
$consultation->uuid = (string) Str::uuid();
|
|
}
|
|
});
|
|
}
|
|
|
|
public function getRouteKeyName(): string
|
|
{
|
|
return 'uuid';
|
|
}
|
|
|
|
public function visit(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Visit::class, 'visit_id');
|
|
}
|
|
|
|
public function appointment(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Appointment::class, 'appointment_id');
|
|
}
|
|
|
|
public function patient(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Patient::class, 'patient_id');
|
|
}
|
|
|
|
public function practitioner(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Practitioner::class, 'practitioner_id');
|
|
}
|
|
|
|
public function vitalSigns(): HasMany
|
|
{
|
|
return $this->hasMany(VitalSign::class, 'consultation_id');
|
|
}
|
|
|
|
public function diagnoses(): HasMany
|
|
{
|
|
return $this->hasMany(Diagnosis::class, 'consultation_id');
|
|
}
|
|
|
|
public function assessments(): HasMany
|
|
{
|
|
return $this->hasMany(Assessment::class, 'consultation_id');
|
|
}
|
|
|
|
public function documents(): HasMany
|
|
{
|
|
return $this->hasMany(ConsultationDocument::class, 'consultation_id');
|
|
}
|
|
|
|
public function investigationRequests(): HasMany
|
|
{
|
|
return $this->hasMany(InvestigationRequest::class, 'consultation_id');
|
|
}
|
|
|
|
public function prescriptions(): HasMany
|
|
{
|
|
return $this->hasMany(Prescription::class, 'consultation_id');
|
|
}
|
|
}
|