{{--*/ $i = 0; /*--}}
@foreach($openbalances as $row)
{{--*/ $i++; /*--}}
| {{ $row->reference_no }} |
{{ date('d-m-Y', strtotime($row->tr_date)) }} |
|
{{$row->tr_type}} |
|
{{ number_format($amount,2) }} |
{{ number_format($row->net_total,2) }} |
|
@endforeach
{{--*/ $i = count($openbalances); /*--}}
@foreach($invoices as $row)
{{--*/ $i++; /*--}}
| {{ $row->voucher_no }} |
{{ date('d-m-Y', strtotime($row->voucher_date)) }} |
|
Dr |
|
{{ number_format($amount,2) }} |
{{ number_format($row->net_total,2) }} |
{{ number_format($row->net_total_fc,2) }} |
@endforeach
{{--*/ $i = count($openbalances) + count($invoices); /*--}}
@foreach($sinbills as $row)
{{--*/ $i++; /*--}}
| {{ $row->voucher_no }} |
{{ date('d-m-Y', strtotime($row->voucher_date)) }} |
|
Dr |
|
{{ number_format($amount,2) }} |
{{ number_format($row->amount,2) }} |
|
@endforeach
{{--*/ $i = count($openbalances) + count($invoices) + count($sinbills); /*--}}
@foreach($otbills as $row)
{{--*/ $i++; /*--}}
| {{ $row->reference_no }} |
{{ date('d-m-Y', strtotime($row->tr_date)) }} |
|
Dr |
|
{{ number_format($amount,2) }} |
{{ number_format($row->amount,2) }} |
|
@endforeach
{{--*/ $i = count($openbalances) + count($invoices) + count($sinbills) + count($otbills); /*--}}
@foreach($sbills as $row)
{{--*/ $i++; /*--}}
| {{ $row->voucher_no }} |
{{ date('d-m-Y', strtotime($row->voucher_date)) }} |
|
Dr |
|
{{ number_format($amount,2) }} |
{{ number_format($row->net_amount,2) }} |
{{ number_format($row->net_amount_fc,2) }} |
@endforeach