@php($insurance = 2.5/100 * $loanRequest->amount)
Request Amount
₦{{number_format($loanRequest->amount, 0)}}
Loan Type: {{ $loanRequest->is_setoff ? "SetOff" : "Capitalized" }}
Insurance: ₦ {{ number_format($insurance, 2) }}
Request Duration
{{ $loanRequest->duration }}
{{ $loanRequest->loan_period == 'weekly' ? 'Weeks' : 'Months' }}
Interest
{{ $loanRequest->interest_percentage }}%
{{ $loanRequest->loan_period }} Repayment
₦{{number_format($loanRequest->emi(), 2)}}
EMI (Potential)
Amount Realized
₦{{number_format($loanRequest->amountRealized, 2)}}
Percentage Remaining
{{ $loanRequest->percentage_left }}%
Expected Date
{{$loanRequest->expected_withdrawal_date}}
Disbursal Amount
₦{{ number_format($loanRequest->disbursalAmount(),2) }}
@if(!$loanRequest->upfront_interest)
Loan Fee Charged
₦{{number_format($loanRequest->success_fee,2)}}
@else
Interest Charged
₦{{number_format(optional($loanRequest->investorUpfrontInterest)->total_payment,2)}}
@endif