From c983ed20c20cbc1cc2a19fe3998662c8acc73a25 Mon Sep 17 00:00:00 2001 From: mikael-zakaria Date: Mon, 6 Oct 2025 13:26:41 +0700 Subject: [PATCH] Update Pateint get dengan format ISO 8601_v3 --- app/Models/PatientModel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/PatientModel.php b/app/Models/PatientModel.php index b661d6e..5728e30 100644 --- a/app/Models/PatientModel.php +++ b/app/Models/PatientModel.php @@ -283,7 +283,7 @@ class PatientModel extends Model { // $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["DeathDateTime"] = $this->formattedDate($patient["DeathDateTime"]); $patient["BirthdateConversion"] = $this->formatedDateForDisplay($patient["Birthdate"]); $patient["LinkTo"] = $this->getLinkedPatients($patient['LinkTo']); $patient["Custodian"] = $this->getCustodian($patient['Custodian']);