@extends('admin.layouts.app') @push('styles') @endpush @section('content')
Review the application, financial terms and repayment schedule.
| # | Due Date | Principal | Interest | EMI | Paid | Outstanding | Status | Action |
|---|---|---|---|---|---|---|---|---|
| #{{ $emi->installment_number }} | {{ optional($emi->due_date)->format('d M Y') }} | {{ money((float)$emi->principal_amount) }} | {{ money((float)$emi->interest_amount) }} | {{ money((float)$emi->emi_amount) }} | {{ money((float)$emi->paid_amount) }} | {{ money((float)$emi->outstanding_amount) }} | {{ ucfirst($emi->status) }} | @if( in_array( $loan->status, [ 'active', 'disbursed', 'overdue' ], true ) && !in_array( $emi->status, [ 'paid', 'cancelled' ], true ) && (float)$emi->outstanding_amount > 0 ) @else — @endif |
EMI Installment
{{ $loan->loan_number }}
{{ $loan->loan_number }}