@yield('header_styles') @yield('horizontal_header')

Payment Voucher New


RV No: {{$crrow->voucher_no}}
Created by:
Created at: {{date('d-m-Y',strtotime($crrow->created_at))}}

@php $craccount = $descr = $cheque_no = $cheque_date = $payname = ''; @endphp

Mode of Payment: @php $dramount = $cramount = 0; @endphp @foreach($invoicerow as $row) @endforeach
Account Name Description Reference Debit Credit
{{$row->master_name}} {{$row->description}} {{$row->reference}} @if($row->entry_type=='Dr'){{number_format($row->amount,2)}} @php $dramount += $row->amount; @endphp @endif @if($row->entry_type=='Cr'){{number_format($row->amount,2)}} @php $cramount += $row->amount; @endphp @endif
Total: {{number_format($dramount,2)}} {{number_format($cramount,2)}}
{{-- page level scripts --}} @section('footer_scripts') @stop