Prechádzať zdrojové kódy

fixed typo on deductible

= 3 rokov pred
rodič
commit
569f4d0939

+ 2 - 2
resources/views/app/patient/coverage_column_renderer.blade.php

@@ -42,7 +42,7 @@
     @endif
 @endif
 @if($coverage->plan_type === 'COMMERCIAL')
-    @if(@$coverage->deductable_amount !== null)
-        <small class="text-muted d-block ml-3">Deductible: {{format_number(@$coverage->deductable_amount)}} </small>
+    @if(@$coverage->deductible_amount !== null)
+        <small class="text-muted d-block ml-3">Deductible: {{format_number(@$coverage->deductible_amount)}} </small>
     @endif
 @endif

+ 2 - 2
resources/views/layouts/patient-header.blade.php

@@ -332,7 +332,7 @@ $addressParts .= implode(", ", $addressPart2);
           </div>
         </div>
         @endif
-        <?php $_cpc = $patient->getPrimaryCoverage(); ?>
+        <?php $_cpc = $patient->getPrimaryCoverage();?>
         <div class="d-flex">
           <div>DOB: {{friendly_date($patient->dob, false,null, true)}} </div>
           @if($_cpc && $patient->getPrimaryCoverageStatus() === 'YES')
@@ -361,7 +361,7 @@ $addressParts .= implode(", ", $addressPart2);
               @endif
               @if($_cpc->plan_type === 'COMMERCIAL')
                 
-                  <div class="ml-2">Deductible: {{format_number(@$_cpc->deductable_amount)}} </div>
+                  <div class="ml-2">Deductible: {{@$_cpc->deductible_amount}} </div>
                 
               @endif
             @endif