Request {{$loanRequest->reference}}
@component('components.admin-lr-status', ['loanRequest' => $loanRequest])
@endcomponent
@include('layouts.shared.error-display')
@component('components.salary-data', [
'gotValidData' => $gotValidData,
'salaryData' => $salaryData
])
@endcomponent
@if($loanRequest)
@component('components.admin-lr-statistics', ['loanRequest' => $loanRequest])
@endcomponent
ADMIN ACTION
@if($loanRequest->status == 1 || $loanRequest->status == 0)
@php
$employer = @$loanRequest->employment->employer;
@endphp
Approve ({{ $gotValidData ? "DAS" : "DDM"}})
Decline Request
@if(!$gotValidData)
NB: Accepting this loan will set this customer up for DDM
@endif
@if($loanRequest->status == 0)
NB: This action will override employer consent
@endif
@endif
@endif
@if($loanRequest)