Pending Loans Report

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

Status: Pending Approval

{{ $stats['total'] }} Total Pending Loans
${{ number_format($stats['total_amount'], 2) }} Total Pending Amount
@forelse($loans as $loan) @empty @endforelse
Loan Number Client Amount Interest Rate Duration Loan Type Purpose Application Date Status
{{ $loan->loan_number }} {{ $loan->client->first_name ?? '' }} {{ $loan->client->last_name ?? '' }}
{{ $loan->client->client_number ?? '' }}
${{ number_format($loan->amount, 2) }} {{ $loan->interest_rate }}% {{ $loan->duration_months }} months {{ ucfirst($loan->loan_type) }} {{ \Illuminate\Support\Str::limit($loan->purpose, 50) }} {{ $loan->application_date ? $loan->application_date->format('M d, Y') : '' }} {{ ucfirst($loan->status) }}
No pending loans found.