Client Details

Generated on {{ now()->format('F d, Y H:i') }}

Basic Information

Client ID:
{{ $client->client_number }}
Full Name:
{{ $client->full_name }}
Email:
{{ $client->email ?? 'N/A' }}
Phone:
{{ $client->phone ?? 'N/A' }}
ID Number:
{{ $client->id_number ?? 'N/A' }}
Type:
{{ ucfirst($client->type) }}
Status:
{{ ucfirst($client->status) }}
Created Date:
{{ $client->created_at->format('M d, Y H:i') }}

Statistics

Total Loans:
{{ $stats['total_loans'] }}
Active Loans:
{{ $stats['active_loans'] }}
Total Borrowed:
${{ number_format($stats['total_borrowed'], 2) }}
Total Savings:
${{ number_format($stats['total_savings'], 2) }}
Credit Score:
{{ $stats['credit_score'] ?? 'N/A' }}
@if($client->loans->count() > 0)

Loans History

@foreach($client->loans as $loan) @endforeach
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') }}
@endif @if($client->savingsAccounts->count() > 0)

Savings Accounts

@foreach($client->savingsAccounts as $account) @endforeach
Account Number Type Balance Status
{{ $account->account_number }} {{ ucfirst($account->type) }} ${{ number_format($account->current_balance, 2) }} {{ ucfirst($account->status) }}
@endif