@if( !count($provisions) )
No manual entry found !!
@else
Savings Product
Savers Type
Interest Payable
Interest Paid
@foreach($provisions as $key => $item)
@php $type = ( $item['type'] == 'withLoan' ) ? 'With Loan' : 'Without Loan' @endphp
{{ $products->where('id' , $item['productId'])->first()->shortName }}
{{ $type }}
{{ $item['interestPayable'] }}
{{ $item['interestPaid'] }}
@endforeach
@endif