{{__('Cashflow')}}

{{ Form::label('year', __('Year'),['class'=>'form-label '])}} {{ Form::select('year',$data['yearList'],isset($year) ? $year : '', array('class' => 'form-control select year')) }}
{{__('Report')}} :
{{__('Quarterly Cashflow')}}
{{__('Duration')}} :
{{$filter['startDateRange'].' to '.$filter['endDateRange']}}
{{__('Income')}}
@foreach($data['month'] as $m) @endforeach
{{__('Category')}}{{$m}}
@foreach($data['totalIncome'] as $income) @endforeach
{{__('Total Income (Invoice)')}}{{currency_format_with_sym($income)}}
{{__('Expense')}}
@foreach($data['month'] as $m) @endforeach
{{__('Category')}}{{$m}}
@foreach($data['totalExpense'] as $income) @endforeach
{{__('Total Expenses (Bill)')}}{{currency_format_with_sym($income)}}
@foreach($data['netProfitArray'] as $i=>$profit) @endforeach
{{__('Net Profit = Total Income - Total Expense ')}}
{{__('Net Profit')}} {{currency_format_with_sym($profit)}}