@extends('admin.layout.app')
@section('title','Receipt Voucher')
@push('headerscript')
@endpush
@section('content')
logo_image)}}" alt="logo" width="150">
{{Helper::getBusinessData()->business_name}}
{{Helper::getBusinessData()->address}}
|
Voucher No
|
{{ $journal_voucher->voucher_no}}
|
|
Date
|
{{date('d-m-Y', strtotime($journal_voucher->voucher_date))}}
|
|
Description : {{$journal_voucher->description}}
|
| Voucher Type |
Account Name |
Remarks |
Credit |
Debit |
Invoice No. |
@foreach($journal_voucher->journalVoucherDetails as $journal_voucher_detail )
|
{{$journal_voucher_detail->voucher_type}}
|
{{$journal_voucher_detail->accountLedger->account_name}}
|
{{$journal_voucher_detail->remark}}
|
{{$journal_voucher_detail->credit}}
|
{{$journal_voucher_detail->debit}}
|
{{$journal_voucher_detail->invoice_no}}
|
@endforeach
| Total Credit |
{{$total_credit}} |
| Total Debit |
{{$total_debit}} |
@endsection
@push('footerscript')
@endpush