diff --git a/app/Http/Controllers/Staff/StudiesController.php b/app/Http/Controllers/Staff/StudiesController.php index cbc8290..50ca332 100644 --- a/app/Http/Controllers/Staff/StudiesController.php +++ b/app/Http/Controllers/Staff/StudiesController.php @@ -27,7 +27,7 @@ public function show() $this->decodeKeys(); $study = Study::with(['details'])->findOrFail($this->key); $fmtD = 'M d, Y'; - //$fmtDT = 'M d, Y h:i A D'; + // $fmtDT = 'M d, Y h:i A D'; $fmtDT = 'F j, Y h:i A (l)'; if (! is_null($study->patient_birthdate)) { $age = sprintf('%sY %s', $study->patient_birthdate->age, $study->patient_birthdate->format($fmtD));