@extends('member.layout') @section('title', 'Loan Details') @section('content')

Loan Application #{{ $loan->id }}

Applied on {{ $loan->created_at->format('F d, Y \a\t H:i') }}

{{ ucfirst($loan->status) }}

Principal

KSh {{ number_format($loan->amount, 0) }}

Rate

{{ $loan->interest_rate }}%

Term

{{ $loan->term_months }}m

Monthly

KSh {{ number_format($loan->monthly_payment, 0) }}

Total Loan Amount

Principal + Interest

{{ $loan->term_months }} months
KSh {{ number_format($loan->total_amount, 0) }}
Monthly: KSh {{ number_format($loan->monthly_payment, 0) }}
@if($loan->notes)

Loan Purpose

{{ $loan->notes }}

@endif

Payment Schedule

Monthly repayment breakdown

@php $balance = $loan->total_amount; $monthlyPayment = $loan->monthly_payment; @endphp @for($month = 1; $month <= min($loan->term_months, 6); $month++) @endfor @if($loan->term_months > 6) @endif
Month Payment
{{ $month }} {{ number_format($monthlyPayment, 0) }}
and {{ $loan->term_months - 6 }} more months

Quick Actions

@if($loan->status === 'pending') Edit @elseif($loan->status === 'approved' || $loan->status === 'active') @endif Back

Application Timeline

Application Submitted

{{ $loan->created_at->format('M d, Y \a\t H:i') }}

Your loan application has been received and is being processed.

@if($loan->approved_at)

Application Approved

{{ $loan->approved_at->format('M d, Y \a\t H:i') }}

Congratulations! Your loan application has been approved.

@endif @if($loan->status === 'active')

Loan Active

Currently active

Your loan is now active and repayments have begun.

@endif

Need Help?

+254 700 000 000

Call us

loans@morio-sacco.co.ke

Email us

Mon-Fri: 8AM-5PM

Business hours

@push('js') @endpush @endsection