Vijayakrishnan 3 лет назад
Родитель
Сommit
9a9580b74f

+ 7 - 0
app/Helpers/helpers.php

@@ -477,6 +477,13 @@ if(!function_exists('sanitize_field_name')) {
     }
 }
 
+if(!function_exists('sanitize_state_name')) {
+    function sanitize_state_name($name) {
+        $result = strtolower($name);
+        return ucwords(preg_replace("/_/i", " ", $result));
+    }
+}
+
 if(!function_exists('renderNoteTemplate')) {
     function renderNoteTemplate($template, $topLevel)
     {

+ 1 - 1
resources/views/app/patient/wizard-partials/state-row.blade.php

@@ -8,7 +8,7 @@
             @elseif($point->state === 'ENTRY_ERROR')
                 <i class="text-secondary fa fa-circle text-sm on-hover-opaque mr-2"></i>
             @endif
-            <span class="text-secondary text-sm font-weight-bold">{{$point->state}} ({{$counts[$point->state]}})</span>
+            <span class="text-secondary text-sm font-weight-bold">{{sanitize_state_name($point->state)}} ({{$counts[$point->state]}})</span>
         </div>
         <hr class="m-0">
     </td>