@extends('layouts.app') @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') }} | ₹{{ number_format((float)$emi->principal_amount,2) }} | ₹{{ number_format((float)$emi->interest_amount,2) }} | ₹{{ number_format((float)$emi->emi_amount,2) }} | ₹{{ number_format((float)$emi->paid_amount,2) }} | ₹{{ number_format((float)$emi->outstanding_amount,2) }} | {{ 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 }}