@extends('layouts.app') @section('title', 'Loan Settlement Details') @section('content')
Process full settlement for this loan
{{ session('success') }}
Please correct the following errors:
| Date | Interest Due | Capital Due | Total Due | Status |
|---|---|---|---|---|
| @if($installment->installment_date && is_object($installment->installment_date)) {{ $installment->installment_date->format('M d, Y') }} @elseif($installment->installment_date) {{ \Carbon\Carbon::parse($installment->installment_date)->format('M d, Y') }} @else N/A @endif | Rs {{ number_format($installment->interest_due, 2) }} | Rs {{ number_format($installment->capital_due, 2) }} | Rs {{ number_format($installment->total_due, 2) }} | Pending |
This loan has already been settled. No further action is required.