@extends('dashboard.user.layouts.app') @section('content')
Requested Amount: {{ currency($loan->user->currency) }}{{ formatAmount($loan->amount) }}
Duration: {{ $loan->duration }} months
Facility: {{ $loan->facility }}
Purpose: {{ $loan->purpose }}
Monthly Income: {{ $loan->monthly_income }}
Status: {{ $loan->status->label() }}
@if ($loan->isRejected())Remarks: {{ $loan->remarks }}
@endif @if ($loan->isApproved() || $loan->isDisbursed())Approved Amount: {{ currency($user->currency) }}{{ formatAmount($loan->approved_amount) }}
@endif @if ($loan->isApproved() || $loan->isDisbursed())Interest Rate: {{ $loan->interest_rate }}%
@endif @if ($loan->isApproved() || $loan->isDisbursed())Total Payable: {{ currency($user->currency) }}{{ formatAmount($loan->total_payable) }}
@endif @if ($loan->isDisbursed())Disbursed At: {{ formatDate($loan->disbursed_at) }}
@endifLoan Application
{{ $title }}Requested Amount
Application Details
Purpose
{{ $loan->purpose }}Monthly Income
{{ $loan->monthly_income }}Rejection Remarks
{{ $loan->remarks }}Approval Details
Approved Amount
{{ currency($user->currency) }}{{ formatAmount($loan->approved_amount) }}Interest Rate
{{ $loan->interest_rate }}%Total Payable
{{ currency($user->currency) }}{{ formatAmount($loan->total_payable) }}Disbursed At
{{ formatDate($loan->disbursed_at) }}Repayment History
Amount
{{ currency($loan->user->currency) }}{{ formatAmount($loanRepayment->amount) }}Repaid At
{{ $loanRepayment->repaid_at ? formatDate($loanRepayment->repaid_at) : 'N/A' }}This loan application was rejected. Please review the remarks above or contact support for more information.