@extends('backend.master') @section('content')
| User | Date | Amount | Installments | Per Installment | Actions | Status |
|---|---|---|---|---|---|---|
|
@if($avatar)
{{ $u?->name ?? 'N/A' }}
{{ $phone ?: 'No phone' }}
{{ $u?->email ?? 'No email' }}
💰
Balance:
{{ number_format((float) $balance, 0) }}
💸
Loan:
{{ number_format((float) $loanShow, 0) }}
Bank:
{{ $pi?->bank_name ?? 'N/A' }}
A/C:
{{ $pi?->account_number ?? 'N/A' }}
|
{{ $dateText }} | ৳{{ number_format((float) $loan->requested_amount, 0) }} | {{ (int) $loan->term_months }} Months | ৳{{ number_format((float) $loan->monthly_installment, 2) }} |
View Details
@if($loan->disbursed_at === null)
@endif
Certificate
@if($loan->status === 'approved')
Agreements
@endif
|
{{ ucfirst(str_replace('_', ' ', $loan->status)) }}
@if($loan->status === 'submitted')
@endif
@if($loan->status === 'security_approved')
@endif
@if($loan->status === 'approved' && $loan->disbursed_at)
Balance Added
@endif
@if(!($loan->status === 'approved' && $loan->disbursed_at !== null))
@endif
|
| No loans found. | ||||||