@extends('layouts.app') @section('title', 'Loan '.$loan->loan_number) @section('page-title', 'Loan Detail') @section('content')
{{ $loan->loan_number }}| # | Due Date | Installment | Principal | Interest | LRD Installment | Balance | Paid | Status |
|---|---|---|---|---|---|---|---|---|
| {{ $i+1 }} | {{ $s->due_date->format('d M Y') }} | ${{ number_format($s->amount,2) }} | ${{ number_format($s->principal_component,2) }} | ${{ number_format($s->interest_component,2) }} | L${{ number_format($s->amount_lrd,2) }} | ${{ number_format($s->running_balance,2) }} | ${{ number_format($s->amount_paid,2) }} | {{ ucfirst($s->status) }} |
| Schedule not generated | ||||||||