| @lang('accounting::lang.cheque_number') |
@lang('sale.type') |
@lang('accounting::lang.bank') |
@lang('sale.amount') |
@lang('accounting::lang.issue_date') |
@lang('accounting::lang.due_date') |
@lang('sale.status') |
@forelse($cheques as $cheque)
| {{ $cheque->cheque_number }} |
{{ $cheque->direction }} |
{{ $cheque->bank_name }} |
{{ number_format($cheque->amount, 2) }} |
{{ optional($cheque->issue_date)->format('Y-m-d') }} |
{{ optional($cheque->due_date)->format('Y-m-d') }} |
{{ $cheque->status }} |
@empty
| @lang('lang_v1.no_data') |
@endforelse
{{ $cheques->appends(request()->query())->links() }}