Deploy Ladill Care / deploy (push) Successful in 31s
Add plan lifecycle, visit stages with chair/recovery points, primary dentition charting, imaging void, revenue reports, perio exams, lab cases, and recalls. Co-authored-by: Cursor <cursoragent@cursor.com>
68 lines
1.5 KiB
PHP
68 lines
1.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\SoftDeletes;
|
|
use Illuminate\Support\Str;
|
|
|
|
class DentalImage extends Model
|
|
{
|
|
use BelongsToOwner, SoftDeletes;
|
|
|
|
public const MODALITY_PA = 'pa';
|
|
|
|
public const MODALITY_BW = 'bw';
|
|
|
|
public const MODALITY_OPG = 'opg';
|
|
|
|
public const MODALITY_PHOTO = 'photo';
|
|
|
|
protected $table = 'care_dental_images';
|
|
|
|
protected $fillable = [
|
|
'uuid', 'owner_ref', 'organization_id', 'patient_id', 'visit_id',
|
|
'patient_attachment_id', 'modality', 'tooth_codes', 'caption',
|
|
'uploaded_by', 'captured_at',
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'tooth_codes' => 'array',
|
|
'captured_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
protected static function booted(): void
|
|
{
|
|
static::creating(function (DentalImage $image) {
|
|
if (! $image->uuid) {
|
|
$image->uuid = (string) Str::uuid();
|
|
}
|
|
});
|
|
}
|
|
|
|
public function getRouteKeyName(): string
|
|
{
|
|
return 'uuid';
|
|
}
|
|
|
|
public function attachment(): BelongsTo
|
|
{
|
|
return $this->belongsTo(PatientAttachment::class, 'patient_attachment_id');
|
|
}
|
|
|
|
public function visit(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Visit::class, 'visit_id');
|
|
}
|
|
|
|
public function patient(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Patient::class, 'patient_id');
|
|
}
|
|
}
|