@extends('layouts.app') @section('title', 'Issued & Void Cheques') @section('breadcrumb') @endsection @section('content') @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @php $queryString = http_build_query($exportQuery ?? request()->query()); $printUrl = route('banking.issued-void-cheques.print') . ($queryString ? '?' . $queryString : ''); $exportUrl = route('banking.issued-void-cheques.export') . ($queryString ? '?' . $queryString : ''); @endphp
@include('partials.report-date-range-fields', [ 'dateFrom' => $filters['date_from'] ?? '', 'dateTo' => $filters['date_to'] ?? '', ])
@include('accounting.vouchers._list_party_filter', [ 'filterOptions' => $filterOptions, 'filters' => $filters, 'selectedPartyLabel' => $selectedPartyLabel ?? 'All names', ])
@include('reports.profit-loss._multi-filter-picker', [ 'pickerId' => 'ivcColumnsPicker', 'emptyLabel' => 'All columns', 'searchPlaceholder' => 'Search columns...', 'inputName' => 'columns[]', 'selectedValues' => $filters['columns'] ?? [], 'options' => $filterOptions['columns'], 'toggleLabel' => $selectedColumnsLabel ?? 'All columns', ])
Reset
Cheque Transactions
Excel Print
@include('banking.issued-void-cheques._table', [ 'showActions' => true, 'linkVoucher' => true, 'formats' => $formats, ])
@if($rows->hasPages()) @endif
@endsection @push('styles') @include('partials.report-datepicker-assets') @endpush @push('modals') @endpush @push('scripts') @include('partials.report-datepicker-init') @endpush