Update Patient Show Date

This commit is contained in:
mikael-zakaria 2025-08-12 16:02:02 +07:00
parent defb4b1282
commit fdb539ecbb

View File

@ -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"]);