| {{ ++$no }} |
{{ (substr($loan['branch'], 0,3)) }} |
{{ (substr($loan['branch'], 4)) }} |
{{ number_format($loan['totalDisburseAmount']) }} |
{{ number_format($loan['totalPayableAmount']) }} |
{{ number_format($loan['totalAmountPaid']) }} |
@if(round( $loan['otr'], 2) > 100)
{{'100%'}}
@else
{{round( $loan['otr'], 2).'%'}}
@endif
|
@endforeach
@php
$toOTR = $grandtotalPayableAmount == 0 ? 0 : ( $grandtotalAmountPaid / $grandtotalPayableAmount ) * 100;
@endphp
| Total |
{{ number_format ($grandtotalDisburseAmount) }} |
{{ number_format ($grandtotalPayableAmount) }} |
{{ number_format ($grandtotalAmountPaid) }} |
@if(round( $toOTR, 2) > 100)
{{'100%'}}
@else
{{round( $toOTR, 2).'%'}}
@endif
|