@yield('header_styles')
@yield('horizontal_header')Receipt Voucher New |
||
|
RV No: {{$crrow->voucher_no}} Created by: Created at: {{date('d-m-Y',strtotime($crrow->created_at))}} |
| Account Name | Description | Reference | Debit | Credit | @php $dramount = $cramount = 0; @endphp @foreach($invoicerow as $row)
|---|---|---|---|---|
| {{$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)}} | ||