@extends('backend.master') @section('title','Manage Loan') @push('styles') {{-- Bootstrap Icons CDN --}} @endpush @section('content')
| #ID | User | Phone | Amount | Tenure | Status | Created | Actions |
|---|---|---|---|---|---|---|---|
| #{{ $loan->id }} |
{{ optional($loan->user)->name ?? 'N/A' }}
UID: {{ optional($loan->user)->id ?? '—' }}
|
{{ optional($loan->user)->phone ?? 'N/A' }} |
৳ {{ number_format($loan->amount) }}
Total: ৳ {{ number_format($loan->total_payable) }}
|
{{ $loan->tenure_months }} মাস
EMI: ৳ {{ number_format($loan->monthly_installment) }}
|
{{ strtoupper(str_replace('_',' ',$status)) }} |
{{ $loan->created_at->format('d M Y') }}
{{ $loan->created_at->format('h:i A') }}
|
View
@if(!in_array($loan->status, ['running','rejected']))
@endif
|
| কোনো লোন পাওয়া যায়নি। | |||||||