@@ -40,4 +40,9 @@
@if(@$patient->mpb_remaining)
<small class="text-muted d-block ml-3">Deductible: {{format_number(@$patient->mpb_remaining)}} </small>
@endif
+@endif
+@if($coverage->plan_type === 'COMMERCIAL')
+ @if(@$coverage->deductable_amount)
+ <small class="text-muted d-block ml-3">Deductible: {{format_number(@$coverage->deductable_amount)}} </small>
+ @endif
@@ -359,6 +359,11 @@ $addressParts .= implode(", ", $addressPart2);
<div class="ml-2">Deductible: {{format_number(@$patient->mpb_remaining)}} </div>
+ @if($_cpc->plan_type === 'COMMERCIAL')
+ @if(@$_cpc->deductable_amount)
+ <div class="ml-2">Deductible: {{format_number(@$_cpc->deductable_amount)}} </div>
</div>