@extends('layouts.master') @section('css') @endsection @section('title') Receipt @endsection @section('content')
{{ $accountingVoucher->voucherType->name }}
{{ $accountingVoucher->voucher_number }}
{{ \Carbon\Carbon::parse($accountingVoucher->voucher_date)->format('d M Y') }}
{{ $accountingVoucher->creditLedger?->name }}
{{ $accountingVoucher->debitLedger?->name }}
{{ $accountingVoucher->amount }}
{{ $accountingVoucher->branch->name ?? '--' }}
{{ $accountingVoucher->remarks ?? '--' }}
NOT CANCELLED
@elseCANCELLED
@endif{{ $accountingVoucher->customer->name ?? '--' }}
{{ $accountingVoucher->customer->mobile ?? '--' }}
| Ledger | Amount |
|---|---|
| {{ $accountingVoucherLedger->ledger->name }} | {{ $accountingVoucherLedger->amount }} |
| Account Name | Amount |
|---|---|
| {{ $accountingVoucherDetail->ledger->name }} | {{ $accountingVoucherDetail->amount }} {{ $accountingVoucherDetail->dr_or_cr }} |