{{ $companyAddress }}
@endifVoucher No: {{ $voucher->voucher_no }} | Date: {{ date('d-m-Y', strtotime($voucher->date)) }}
| Party Type | {{ ucfirst($voucher->party_type) }} | Voucher Type | {{ $voucher->type == 'credit' ? 'Credit (Received)' : ($voucher->type == 'debit' && $voucher->party_type == 'expenses' ? 'Expense' : 'Debit (Paid)') }} |
|---|---|---|---|
| Party Name | {{ $party->name ?? $voucher->party_name ?? '-' }} | Payment Method | {{ $paymentMethod }} |
| Branch | {{ $sale->branch->name }} | ||
| Invoice No | {{ $sale->invoice_no }} | ||
| Category | {{ $voucher->category }} | ||
Received Amount {{ number_format($voucher->received_amount ?? 0, 2) }} |
@if($voucher->discount > 0)
Discount {{ number_format($voucher->discount, 2) }} |
@endif
@if($voucher->tds > 0)
TDS {{ number_format($voucher->tds, 2) }} |
@endif
@if($voucher->vds > 0)
VDS {{ number_format($voucher->vds, 2) }} |
@endif
Total Amount {{ number_format($voucher->amount, 2) }} |
Amount {{ number_format($voucher->amount, 2) }} |
@if($voucher->received_amount > 0)
Received / Paid {{ number_format($voucher->received_amount, 2) }} |
@endif
Received By |
Authorised Signatory |