Generated on {{ now()->format('F d, Y H:i') }}
| Loan ID | Amount | Status | Created Date |
|---|---|---|---|
| {{ $loan->loan_number }} | ${{ number_format($loan->loan_amount, 2) }} | {{ ucfirst($loan->status) }} | {{ $loan->created_at->format('M d, Y') }} |
| Account Number | Type | Balance | Status |
|---|---|---|---|
| {{ $account->account_number }} | {{ ucfirst($account->type) }} | ${{ number_format($account->current_balance, 2) }} | {{ ucfirst($account->status) }} |