@extends('../layout/' . $layout) @section('subhead') Atarud MIS - Charts of Accounts @endsection @section('subcontent')

All Transactions Reports

@include('../pages/account/reports/sidebar')

Report Filters

Report Content

@if(isset($fromDate) && isset($toDate))
@endif
@if(isset($transactions))
@foreach($transactions as $row) @php $acc = App\Models\ChartofAccount::where('id', $row->account_id)->first(); @endphp @endforeach
# Particular Date Title Amount Type
{{++$loop->index}} {{$acc != null ? $acc->name :''}} {{ $row->timestamp}} {{$row->title}} {{$row->amount}} {{$acc != null ? $acc->account_type :''}}
@endif
@endsection @section('script') @endsection