@extends('dashboard') @section('dashboard_content')
← Back to Business Loan List

Business Loan Request Details

{{ $loan->FirstName }} {{ $loan->LastName }} — Submitted on {{ $loan->created_at->format('Y-m-d') }}
@csrf @method('PUT')

Current Status: @if($loan->status == 'Confirmed') Confirmed @elseif($loan->status == 'Rejected') Rejected @elseif ($loan->status == 'Submitted') Submitted @else Pending @endif

{{--
--}}
Loan Details

Loan Purpose: {{ ucfirst($loan->LoanPurpose) }}

Requested Amount: ${{ number_format($loan->RequestedAmount, 2) }}

Monthly Income: ${{ number_format($loan->MonthlyIncome, 2) }}

Flexible Amount: {{ $loan->FlexibleAmount ? 'Yes' : 'No' }}


Personal Information

Email: {{ $loan->Email }}

Phone: {{ $loan->PhoneHome }}

Date of Birth: {{ $loan->DOB }}

SSN: {{ $loan->SSN }}

Active Military: {{ $loan->ActiveMilitary ? 'Yes' : 'No' }}


Identification

Driving License: {{ $loan->DriversLicense }}

License State: {{ $loan->DriversLicenseState }}


Address Information

Address 1: {{ $loan->Address1 }}

Address 2: {{ $loan->Address2 ?? 'N/A' }}

City: {{ $loan->City }}

State: {{ $loan->State }}

Zip Code: {{ $loan->ZipCode }}

Residence Type: {{ $loan->OwnHome }}


Employment & Income

Employer Name: {{ $loan->EmployerName }}

Income Type: {{ $loan->IncomeType }}

Pay Frequency: {{ $loan->PayFrequency }}

Pay Date: {{ $loan->PayDate1 }}


Banking Details

Bank Name: {{ $loan->BankName }}

Bank ABA: {{ $loan->BankABA }}

Bank Account Number: {{ $loan->BankAccountNumber }}

Bank Account Type: {{ $loan->BankAccountType }}

Direct Deposit: {{ $loan->DirectDeposit ? 'Yes' : 'No' }}

Debit Card: {{ $loan->DebitCard ? 'Yes' : 'No' }}


Other Details

Credit Score: {{ $loan->CreditScore }}

Best Time to Call: {{ $loan->BestTimeToCall }}

Campaign ID: {{ $loan->CampaignID ?? 'N/A' }}

Campaign Key: {{ $loan->CampaignKey ?? 'N/A' }}

Leadtype ID: {{ $loan->LeadtypeId ?? 'N/A' }}

Client IP: {{ $loan->ClientIP ?? 'N/A' }}

Client URL: {{ $loan->ClientURL ?? 'N/A' }}

User Agent: {{ $loan->ClientUserAgent ?? 'N/A' }}

@endsection