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

{{$page_info['page_name']}}

@if(isSuperAdmin()) @endif @if(rolesAccess('Disbursal Sheet Send', 'export') || isSuperAdmin() || isAdmin())
@endif @if(!empty($filter)) @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) @php $pf = isset($loan->pfPercentage) ? round($loan->adminFee * ($loan->pfPercentage / 100), 2) : 0; @endphp @endforeach @endif
Invoice No Date Reference No Party Name State GSTTIN Admin Fee Plate Form Fee Convenience Fee Credit Risk Analysis Hostel Fee CGST SGST GST Total Amount Narration Interest
No records found
{{ $loan->loanNo }} {{ \Carbon\Carbon::parse($loan->disbursalDate)->format('d-m-Y') }} {{ $loan->disbursalRefrenceNo }} {{ ucwords($loan->customerName) }} {{ $loan->state }} - {{ number_format($loan->adminFee, 2) }} {{ number_format($pf, 2) }} - - - {{ is_numeric($loan->CGST) ? number_format($loan->CGST, 2) : $loan->CGST }} {{ is_numeric($loan->SGST) ? number_format($loan->SGST, 2) : $loan->SGST }} {{ number_format($loan->gst, 2) }} {{ number_format($loan->TotalAmount, 2) }} {{ $loan->loanType }} {{ is_numeric($loan->interest) ? number_format($loan->interest, 2) : $loan->interest }}
Invoice No Date Reference No Party Name State GSTTIN Admin Fee Plate Form Fee Convenience Fee Credit Risk Analysis Hostel Fee CGST SGST GST Total Amount Narration Interest
{{ $loans->appends($queryParameters)->links('pagination::bootstrap-5') }}
@endsection @section('custom-js') @endsection