| # |
Action |
Invoice No. |
Loan No |
Customer Name |
Status |
City |
State |
Admin Fee |
IGST |
CGST |
SGST |
Total |
Disbursal Date |
Action |
@php
$serial = isset($loans) ? (($loans->currentPage() - 1) * $loans->perPage() + 1) : 1;
@endphp
@if(isset($loans) && $loans->isEmpty())
| No records found |
@elseif(isset($loans))
@foreach($loans as $loan)
| {{$serial++}} |
|
{{ $loan->invoiceNo }} |
{{ $loan->loanNo ?? '-' }} |
{{ $loan->customerName ?? '-' }} |
@if(($loan->invoiceStatus ?? '') === 'Generated')
Generated
@else
Canceled
@endif
|
{{ $loan->city ?? '-' }} |
{{ $loan->state ?? '-' }} |
{{ number_format($loan->adminFee, 2) }} |
{{ number_format($loan->igst, 2) }} |
{{ number_format($loan->cgst, 2) }} |
{{ number_format($loan->sgst, 2) }} |
{{ number_format($loan->totalAmount, 2) }} |
{{ $loan->disbursalDateFmt ?? '-' }}
|
@if(!empty($loan->invoiceNo))
@else
N/A
@endif
|
@endforeach
@endif
| # |
Action |
Invoice No |
Loan No |
Status |
City |
State |
Admin Fee |
IGST |
CGST |
SGST |
Total |
Disbursal Date |
Action |
{{ $loans->appends($queryParameters)->links('pagination::bootstrap-5') }}