Complete Dentistry commercial suite with PMS depth.
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>
This commit is contained in:
isaacclad
2026-07-18 17:11:15 +00:00
co-authored by Cursor
parent e227f8705f
commit ce782382c5
37 changed files with 2458 additions and 204 deletions
+7 -1
View File
@@ -21,11 +21,16 @@ class DentalTreatmentPlan extends Model
public const STATUS_COMPLETED = 'completed';
public const STATUS_REJECTED = 'rejected';
public const STATUS_CANCELLED = 'cancelled';
protected $table = 'care_dental_treatment_plans';
protected $fillable = [
'uuid', 'owner_ref', 'organization_id', 'patient_id', 'visit_id',
'status', 'title', 'estimate_minor', 'accepted_at', 'completed_at', 'created_by',
'status', 'title', 'estimate_minor', 'accepted_at', 'completed_at',
'rejected_at', 'rejection_reason', 'created_by',
];
protected function casts(): array
@@ -33,6 +38,7 @@ class DentalTreatmentPlan extends Model
return [
'accepted_at' => 'datetime',
'completed_at' => 'datetime',
'rejected_at' => 'datetime',
];
}