Deploy Ladill Care / deploy (push) Failing after 13s
Healthcare management app: patients, appointments, consultations, lab, pharmacy inventory, billing, and reports at care.ladill.com. Co-authored-by: Cursor <cursoragent@cursor.com>
96 lines
2.4 KiB
PHP
96 lines
2.4 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 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');
|
|
}
|
|
}
|