@extends('layouts.admin') @section('title', 'Product | Mintavia Admin') @section('content')
| Date | Receipt No. | Payment Mode | Bank Entry | Party Name | Cheque No | Cheque Date | Narration | Deposit | Withdrawal | CLEAR DATE | {{-- 👈 Add this --}}
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $voucher->date }} | {{ $voucher->voucher_no }} | {{ $paymentModes[$voucher->payment_mode_bank] ?? 'N/A' }} | {{ $voucher->bankStatement->account->name ?? 'N/A' }} | {{ $voucher->account->name ?? 'N/A' }} | {{ $voucher->cheque_number }} | {{ $voucher->cheque_date }} | {{ $voucher->narration }} | {{ $deposit > 0 ? number_format($deposit, 2) : '' }} | {{ $withdrawal > 0 ? number_format($withdrawal, 2) : '' }} |