← Back to Application Queue

{{ $application->application_number }}

{{ $application->customer?->fullName() }} — {{ $application->stageLabel() }}

Application Details

Product
{{ $application->mortgageProduct?->name }}
Loan Amount
₦{{ number_format($application->loan_amount, 2) }}
Property Value
₦{{ number_format($application->property_value ?? 0, 2) }}
Tenor
{{ $application->tenor_years }} years
DTI
{{ $application->dti_ratio ?? '—' }}%
LTV
{{ $application->ltv_ratio ?? '—' }}%
Property Address
{{ $application->property_address ?? '—' }}

Stage History (Audit Trail)

@forelse ($application->stageHistory as $entry)

{{ $entry->to_stage }}

{{ $entry->actor?->name ?? 'System' }} · {{ $entry->created_at->format('M j, Y g:ia') }}

@if ($entry->notes)

{{ $entry->notes }}

@endif
@empty

No history recorded yet.

@endforelse

Customer

{{ $application->customer?->fullName() }}

{{ $application->customer?->phone }}

{{ $application->customer?->email }}

{{ $application->customer?->employer_name }}

₦{{ number_format($application->customer?->monthly_income ?? 0) }}/month

@if ($application->caf)

CAF — {{ $application->caf->caf_number }}

  • Credit Checks{{ $application->caf->credit_checks_complete ? '✓' : '—' }}
  • Valuation{{ $application->caf->valuation_complete ? '✓' : '—' }}
  • Charting{{ $application->caf->charting_complete ? '✓' : '—' }}
  • Legal Search{{ $application->caf->legal_search_complete ? '✓' : '—' }}
  • 4Cs Rating{{ $application->caf->rating_4cs ?? '—' }}
@endif