| {{ $sl++ }} |
{{ $sc_rate }} {{ Form::hidden('sc_rate[]', $sc_rate) }} |
|
@foreach($olrsProducts as $olrsProduct)
@php
$interestPaid = @$fundInterests[$sc_rate][$olrsProduct->olrs_column_name];
$totalPaidRateWise += $interestPaid;
${$olrsProduct->olrs_column_name} += $interestPaid;
$total_interestPaid += $interestPaid;
@endphp
{{ number_format($interestPaid,$round) }} {{ Form::hidden($olrsProduct->olrs_column_name.'[]', round($interestPaid, $round)) }} |
@endforeach
{{ number_format($totalPaidRateWise, $round)}} {{ Form::hidden('loan_total[]', round($totalPaidRateWise, $round)) }} |
@if($migration)
|
@php
$mig_total_interestPaid += @$migFundInterests[$sc_rate]->loan_total;
@endphp
@foreach($olrsProducts as $olrsProduct)
@php
${'mig_'.$olrsProduct->olrs_column_name} += @$migFundInterests[$sc_rate]->{strtolower($olrsProduct->olrs_column_name)};
$mig_totalPaidRateWise += @$migFundInterests[$sc_rate]->{strtolower($olrsProduct->olrs_column_name)};
@endphp
{{number_format(@$migFundInterests[$sc_rate]->{strtolower($olrsProduct->olrs_column_name)})}} |
@endforeach
{{number_format(@$migFundInterests[$sc_rate]->loan_total)}} |
@endif
@endforeach
| Grand Total |
@foreach($olrsProducts as $olrsProduct)
{{ number_format(${$olrsProduct->olrs_column_name}, $round)}} |
@endforeach
{{ number_format($total_interestPaid, $round)}} |
@if($migration)
|
@foreach($olrsProducts as $olrsProduct)
{{ number_format(${'mig_'.$olrsProduct->olrs_column_name}, $round)}} |
@endforeach
{{ number_format($mig_total_interestPaid, $round)}} |
@endif