@extends('layouts.app') @section('title', 'Pending Loans') @section('content')
| LOAN NUMBER | CLIENT | AMOUNT | STATUS | INTEREST RATE | DURATION | MONTHLY PAYMENT | TOTAL REPAYMENT | PURPOSE | TYPE | APPLICATION DATE | ACTIONS | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loan->loan_number }} |
{{ $loan->client->first_name }} {{ $loan->client->last_name }}
{{ $loan->client->client_number }}
|
${{ number_format($loan->amount, 2) }} | @if($loan->status == 'pending') Pending @elseif($loan->status == 'rejected') Rejected @elseif($loan->status == 'waiting') Waiting @else {{ ucfirst($loan->status) }} @endif | {{ number_format($loan->interest_rate, 2) }}% | {{ $loan->duration_months }} months | ${{ number_format($loan->monthly_payment, 2) }} | ${{ number_format($loan->total_repayment, 2) }} | {{ $loan->purpose }} | {{ ucfirst($loan->loan_type) }} | {{ $loan->application_date->format('M d, Y') }} | ||
No pending loan applications foundAll loan applications have been processed or there are no applications matching your filters. @if(request()->hasAny(['search', 'loan_type', 'min_amount', 'max_amount', 'start_date', 'end_date'])) Clear Filters @endif |
||||||||||||