Loans Management Report

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

Period: {{ request('start_date', 'All time') }} to {{ request('end_date', 'Present') }}

{{ $stats['total'] }} Total Loans
${{ number_format($stats['total_amount'], 2) }} Total Amount
{{ $stats['approved'] }} Approved
{{ $stats['disbursed'] }} Disbursed
@forelse($loans as $loan) @empty @endforelse
Loan Number Client Amount Interest Rate Status Application Date Loan Type
{{ $loan->loan_number }} {{ $loan->client->first_name }} {{ $loan->client->last_name }}
{{ $loan->client->client_number }}
${{ number_format($loan->amount, 2) }} {{ $loan->interest_rate }}% {{ ucfirst($loan->status) }} {{ $loan->application_date->format('M d, Y') }} {{ ucfirst($loan->loan_type) }}
No loans found matching the criteria.