@extends('layouts/microfin_layout') @section('title', '| Bad Loan Adjustment') @section('content')

Bad Loan Adjustment List

{{-- --}}
@forelse ($data['loanAdjustments'] as $loanAdjustment) @empty

No Data Found!

@endforelse
SL Adjustment Date Branch Gender Product Loan Code Total Installment (Rescheduled amount) total Princepal total Interest Action
{{$loop->iteration}} {{date_format(date_create($loanAdjustment->adjustmentDate),"d-m-Y")}} {{$data['branchList'][$loanAdjustment->branch_id]}} {{$data['genderList'][$loanAdjustment->gender]}} {{$data['loanProductList'][$loanAdjustment->product_id]}} {{$loanAdjustment->loanCode}} {{number_format( $loanAdjustment->totalInstallment)}} {{number_format( $loanAdjustment->totalPrincepal,2)}} {{number_format( $loanAdjustment->totalInterest,2)}}
Total {{number_format($data['totalInstallment'])}} {{round($data['totalPrincepal'])}} {{round($data['totalInterest'])}}
{{-- @if (count($data['loanAdjustments'])>0) {{$data['loanAdjustments']->appends(request()->input())->render()}} @endif --}}
@endsection