@extends('layouts.master') @section('page-title', $page_info['page_title']) @section('main-section')

{{$page_info['page_name']}}

@if(!empty($filter) || !empty($search)) @endif
@php $serial = isset($loans) ? (($loans->currentPage() - 1) * $loans->perPage() + 1) : 1; @endphp @if(isset($loans) && $loans->isEmpty()) @elseif(isset($loans)) @foreach($loans as $loan) @endforeach @endif
# Action Invoice No. Loan No Customer Name Status City State Admin Fee IGST CGST SGST Total Disbursal Date Action
No records found
{{$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
# Action Invoice No Loan No Status City State Admin Fee IGST CGST SGST Total Disbursal Date Action
{{ $loans->appends($queryParameters)->links('pagination::bootstrap-5') }}
@endsection @section('custom-js') @endsection