@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 = ($loans->currentPage() - 1) * $loans->perPage() + 1; @endphp @forelse($loans as $r) @empty @endforelse
Reference No # Transaction ID Date Txn Posted Date Cheque No Description DR/CR Amount Available Balance (INR) Loan No Name State Disbursal/Collection Amount Created Date
{{ $r->reference_no }} {{ $serial++ }} {{ $r->transaction_id }} {{ $r->date }} {{ $r->txn_posted_date }} {{ $r->cheque_no }} {{ $r->description }} {{ $r->dr_cr }} {{ nf($r->amount) }} {{ nf($r->available_balance) }} {{ $r->loanNo }} {{ ucwords($r->name) }} {{ $r->state }} {{ nf($r->disbursalAmount + $r->collectedAmount) }} {{ dft($r->createdDate) }}
No records found
Reference No # Transaction ID Date Txn Posted Date Cheque No Description DR/CR Amount Available Balance (INR) Loan No Name State Disbursal/Collection Amount Created Date
{{ $loans->appends($queryParameters)->links('pagination::bootstrap-5') }}
@endsection @section('custom-js') @endsection