{{ $company->name }}
{{ $company->address }}
Phone: {{ $company->phone }}
GST: {{ $company->gst }}
@foreach ($accountingVouchers as $accountingVoucher) @foreach($accountingVoucher->accountingVoucherLedgers as $accountingVoucherLedger) @endforeach
----------------------------------------------
Voucher Number {{ $accountingVoucher->voucher_number }}
Voucher Date {{ \Carbon\Carbon::parse($accountingVoucher->voucher_date)->format('d-m-Y') }}
Supplier Invoice Number {{ $accountingVoucher->supplier_invoice_no }}
Supplier Invoice Date {{ \Carbon\Carbon::parse($accountingVoucher->supplier_invoice_date)->format('d-m-Y') }}
----------------------------------------------
{{ $accountingVoucherLedger->ledger->name }} {{ $accountingVoucherLedger->amount }}
----------------------------------------------
@endforeach