@extends('layouts.app') @section('title', 'Loan Details - ' . $loan->loan_number) @section('content')
This loan application is awaiting approval.
This loan application is waiting for additional information.
This loan application has been approved and is ready for disbursement.
| Date | Amount | Method | Reference | Notes | Recorded By |
|---|---|---|---|---|---|
| {{ $repayment->payment_date->format('M d, Y') }} | ${{ number_format($repayment->amount, 2) }} | {{ ucfirst(str_replace('_', ' ', $repayment->payment_method)) }} |
{{ $repayment->reference ?: '-' }}
|
{{ $repayment->notes ?: 'No notes' }} | @if($repayment->creator) {{ $repayment->creator->name }} @else System @endif |
No payments recorded yet.