Report Expense
@if(isset($transactions))
@foreach($transactions as $data)
{{$accountName[$loop->index]}}
@php
$count = $loop->index;
@endphp
@if(count($data) >0)
# |
Particular |
Date |
Voucher Number |
Credit |
Debit |
@foreach($data as $row)
{{++$loop->index}} |
{{$accountName[$count]}} |
{{ $row->timestamp}} |
{{$row->voucher_id}} |
{{$row->amount}} |
{{$row->amount}} |
@endforeach
@endif
@endforeach
@endif