@extends('layouts.app') @section('content')
Track and analyze rejected applications
No rejection data available
@endifNo type data available
@endif| # | Applicant Info | Type | Location | Rejection Reason | Details | Rejected By | Date | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $rejections->firstItem() + $index }} |
{{ $rejection->enquiry->full_name ?? 'N/A' }}
{{ $rejection->enquiry->check_number ?? 'N/A' }}
|
@php $type = $rejection->enquiry->type ?? 'N/A'; $icon = match($type) { 'loan_application' => 'bx-credit-card', 'refund' => 'bx-money', 'share_enquiry' => 'bx-share-alt', 'retirement' => 'bx-user-check', 'withdraw_savings', 'withdraw_deposit' => 'bx-wallet', default => 'bx-file' }; @endphp {{ ucwords(str_replace('_', ' ', $type)) }} |
{{ $rejection->enquiry->region->name ?? 'N/A' }}
{{ $rejection->enquiry->district->name ?? 'N/A' }}
{{ $rejection->enquiry->branch->name ?? 'N/A' }} |
{{ ucwords(str_replace('_', ' ', $rejection->rejection_reason)) }} |
@if($rejection->rejection_detail)
{{ Str::limit($rejection->rejection_detail, 50) }}
@else
No details provided
@endif
|
@if($rejection->rejectedBy)
{{ $rejection->rejectedBy->name }}
@if($rejection->rejectedBy->roles->first())
{{ ucwords(str_replace('_', ' ', $rejection->rejectedBy->roles->first()->name)) }}
@endif
|
{{ $rejection->created_at->format('d M Y') }}
{{ $rejection->created_at->format('H:i') }}
|
View |
No rejections match your current filters.