@extends('layouts.app') @section('title', 'Cheque Print') @section('breadcrumb') @endsection @section('content') @if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif

Ready to Print

Select cheques and a format, then click Print.

@csrf
@forelse($queueItems as $item) @empty @endforelse
Date Voucher # Type Payee Cheque No Cheque Date Amount
{{ $item['voucher_date'] }} {{ $item['voucher_number'] }} {{ $item['type_label'] }} {{ $item['payee'] }} {{ $item['cheque_no'] }} {{ $item['cheque_date'] }} {{ $item['amount'] }}
No cheques are ready to print.
Save and post a Bank Payment or eligible Contra voucher with a Cheque No. Draft vouchers are not listed here.
@endsection @push('scripts') @endpush