@extends('../layout/' . $layout)
@section('subhead')
Atarud MIS - Charts of Accounts
@endsection
@section('subcontent')
All Transactions Reports
@include('../pages/account/reports/sidebar')
Report Content
@if(isset($fromDate) && isset($toDate))
@endif
@if(isset($transactions))
# |
Particular |
Date |
Title |
Amount |
Type |
@foreach($transactions as $row)
@php
$acc = App\Models\ChartofAccount::where('id', $row->account_id)->first();
@endphp
{{++$loop->index}} |
{{$acc != null ? $acc->name :''}} |
{{ $row->timestamp}} |
{{$row->title}} |
{{$row->amount}} |
{{$acc != null ? $acc->account_type :''}} |
@endforeach
@endif
@endsection
@section('script')
@endsection