@if($policy_data['selected_cover_code'] != 'CUST')
@if (count($policy_data['insurance_covers']) > 1)

Other policy options

@endif
@foreach($policy_data['insurance_covers'] as $key => $policy) @if($policy['cover_code'] != $policy_data['selected_cover_code'] && $policy_data['covers'][$policy['cover_code']]['total_premium'])

{{$buttonTitle}}

@if($policy_data['covers'][$policy['cover_code']]['discount_applied'] == 'Yes')
LKR {{number_format($policy_data['covers'][$policy['cover_code']]['total_premium_without_discount'],2)}}
LKR @php $discountedAMount = $policy_data['covers'][$policy['cover_code']]['total_premium'] @endphp {{ number_format($discountedAMount,2) }}
@else
LKR {{number_format($policy_data['covers'][$policy['cover_code']]['total_premium'],2)}}
@endif
{{ csrf_field() }} @if($policy['cover_code'] != $policy_data['selected_cover_code'] && $policy_data['covers'][$policy['cover_code']]['total_premium'])
@endif
@endif @endforeach
@endif