@extends('layouts.app') @section('content')
{{ $user->email }} | {{ $user->phone_number ?? 'N/A' }}
| Check Number | Full Name | Force Number | Phone | Loan Amount | Loan Type | Loan Category | Duration | Interest Rate | Monthly Deduction | Total + Interest | Total Interest | Processing Fee | Insurance | Disbursement Amount | Requested Amount | Status | Created Date | Actions |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $enquiry->check_number }} | {{ ucwords($enquiry->full_name) }} | {{ $enquiry->force_no ?? 'N/A' }} | {{ $enquiry->phone ?? 'N/A' }} | @if($loan && $loan->loan_amount) Tsh {{ number_format($loan->loan_amount) }} @else N/A @endif | {{ $loan->loan_type ?? 'N/A' }} | {{ $loan ? ucfirst(str_replace('_', ' ', $loan->loan_category)) : 'N/A' }} | {{ $loan && $loan->loan_duration ? $loan->loan_duration . ' months' : 'N/A' }} | {{ $loan && $loan->interest_rate ? $loan->interest_rate . '%' : 'N/A' }} | @if($loan && $loan->monthly_deduction) Tsh {{ number_format($loan->monthly_deduction) }} @else N/A @endif | @if($loan && $loan->total_loan_with_interest) Tsh {{ number_format($loan->total_loan_with_interest) }} @else N/A @endif | @if($loan && $loan->total_interest) Tsh {{ number_format($loan->total_interest) }} @else N/A @endif | @if($loan && $loan->processing_fee) Tsh {{ number_format($loan->processing_fee) }} @else N/A @endif | @if($loan && $loan->insurance) Tsh {{ number_format($loan->insurance) }} @else N/A @endif | @if($loan && $loan->disbursement_amount) Tsh {{ number_format($loan->disbursement_amount) }} @else N/A @endif | @if($loan && $loan->requested_amount) Tsh {{ number_format($loan->requested_amount) }} @else N/A @endif | @if($enquiry->status == 'assigned') Assigned @elseif($enquiry->status == 'processed') Processed @elseif($enquiry->status == 'approved') Approved @elseif($enquiry->status == 'rejected') Rejected @elseif($enquiry->status == 'paid') Paid @else {{ ucfirst($enquiry->status) }} @endif | {{ $enquiry->created_at->format('d M Y') }} |
|
|
No enquiries found |
||||||||||||||||||