From c8e06cd98222c478270b5d10a299d0229edc5fce Mon Sep 17 00:00:00 2001 From: mikael-zakaria Date: Mon, 11 Aug 2025 12:55:43 +0700 Subject: [PATCH] Update Perbaikan patient show untuk Identity --- app/Controllers/Patient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controllers/Patient.php b/app/Controllers/Patient.php index 4decddc..d2a8fd8 100644 --- a/app/Controllers/Patient.php +++ b/app/Controllers/Patient.php @@ -85,7 +85,7 @@ class Patient extends Controller { ->select('PatIdtID, IdentifierType, Identifier') ->where('InternalPID', (int) $InternalPID) ->get() - ->getRowArray(); + ->getResultArray(); $patient['Identity'] = $patidt; }