From fdb539ecbb1e15fcfa69b825d02aef6dd9bd19cf Mon Sep 17 00:00:00 2001 From: mikael-zakaria Date: Tue, 12 Aug 2025 16:02:02 +0700 Subject: [PATCH] Update Patient Show Date --- app/Controllers/Patient.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Controllers/Patient.php b/app/Controllers/Patient.php index 261a698..9e4ab09 100644 --- a/app/Controllers/Patient.php +++ b/app/Controllers/Patient.php @@ -84,6 +84,7 @@ class Patient extends Controller { $patient["Age"] = $this->calculateAgeFromBirthdate($patient["Birthdate"]); $patient["Birthdate"] = $this->formatedDate($patient["Birthdate"]); $patient["CreateDate"] = $this->formatedDate($patient["CreateDate"]); + $patient["DelDate"] = $this->formatedDate($patient["DelDate"]); $patient["DeathDateTime"] = $this->formatedDate($patient["DeathDateTime"]); $patient["BirthdateConversion"] = $this->formatedDateForDisplay($patient["Birthdate"]);