@extends('layouts.portal') @section('title', 'Loan '.$loan->loan_no) @section('content')
{{ $loan->loanProduct->name ?? 'Loan' }}
| # | Due Date | Principal | Interest | Total Due | Status |
|---|---|---|---|---|---|
| {{ $schedule->installment_no }} | {{ $schedule->due_date?->format('d M Y') ?? '—' }} | {{ money($schedule->principal_due) }} | {{ money($schedule->interest_due) }} | {{ money($schedule->total_due) }} |
| Date | Amount | Reference |
|---|---|---|
| {{ $rep->payment_date?->format('d M Y') ?? $rep->created_at->format('d M Y') }} | {{ money($rep->amount) }} | {{ $rep->reference ?? '—' }} |