@extends('backend.master') @section('title','Manage Loan') @push('styles') @endpush @section('content') @php $status = $loan->status; $badgeClass = 'badge-other'; if ($status === 'running') { $badgeClass = 'badge-running'; } elseif (in_array($status, ['pending_deposit','pending_approval','nid_uploaded','summary_confirmed','draft'])) { $badgeClass = 'badge-pending'; } elseif ($status === 'rejected') { $badgeClass = 'badge-rejected'; } @endphp
এই লোনের জন্য এখনো কোনো জামানত ডিপোজিট নেই।
@else| Method | Amount | TRX ID | Status | Time | Actions |
|---|---|---|---|---|---|
| {{ $deposit->method }} | ৳ {{ number_format($deposit->amount) }} | {{ $deposit->transaction_id }} | {{ $deposit->status }} | {{ $deposit->created_at->diffForHumans() }} | @if($deposit->status === 'pending') @else — @endif |
কোনো কিস্তি তৈরি নেই।
@endforelsephp artisan storage:link রান করা আছে।
@else
User এখনও কোনো NID আপলোড করেনি।
@endif