@extends('layouts.app') @section('title', $member->name) @section('page-title', 'Member Profile') @section('content')
| Loan # | Amount | Balance | Term | Status | |
|---|---|---|---|---|---|
{{ $loan->loan_number }} |
${{ number_format($loan->amount, 2) }} | ${{ number_format($loan->outstanding_balance, 2) }} | {{ $loan->term_months }} mo @ {{ $loan->interest_rate }}% | {{ ucfirst($loan->status) }} | View |
| No loans | |||||
| Ref | Type | Amount | Date | Note |
|---|---|---|---|---|
{{ $txn->reference }} |
{{ ucfirst($txn->type) }} | ${{ number_format($txn->amount, 2) }} | {{ $txn->created_at->format('M d, Y') }} | {{ $txn->note ?? '—' }} |
| No transactions | ||||