@extends('layouts.main') @section('page-title') {{ __('Cash Flow') }} @endsection @section('page-breadcrumb') {{ __('Report') }}, {{ __('Cash Flow') }} @endsection @push('css') @endpush @push('scripts') @endpush @section('page-action')
@endsection @section('content')
{{ Form::open(['route' => array('report.quarterly.cashflow'), 'method' => 'GET', 'id' => 'quarterly_cashflow']) }}
{{ Form::label('year', __('Year'),['class'=>'form-label'])}} {{ Form::select('year',$yearList,isset($_GET['year'])?$_GET['year']:'', array('class' => 'form-control select')) }}
{{ Form::close() }}
{{__('Quarterly Cashflow')}}
{{$filter['startDateRange'].' to '.$filter['endDateRange']}}
{{__('Income')}}
@foreach($four_month as $month) @endforeach @foreach($RevenueTotal as $revenue) @endforeach @foreach($invoiceTotal as $invoice) @endforeach @foreach($chartIncomeArr as $i=>$income) @endforeach
{{__('Category')}}{{$month}}
{{__('Revenue : ')}}{{currency_format_with_sym(!empty($revenue) ?? '0.00')}}
{{__('Invoice : ')}}{{currency_format_with_sym($invoice)}}
{{__('Total Income = Revenue + Invoice ')}}
{{__('Total Income')}}{{currency_format_with_sym($income)}}
{{__('Expense')}}
@foreach($four_month as $month) @endforeach @foreach($paymentTotal as $i=>$payment) @endforeach @foreach($paySlipTotal as $i=>$paySlip) @endforeach @foreach($billTotal as $i=>$bill) @endforeach @foreach($chartExpenseArr as $i=>$expense) @endforeach
{{__('Category')}}{{$month}}
{{__('Payment')}}{{currency_format_with_sym($payment)}}
{{__('PaySlip')}}{{currency_format_with_sym($paySlip)}}
{{__('Bill')}}{{currency_format_with_sym($bill)}}
{{__('Total Expense = Payment + PaySlip + Bill ')}}
{{__('Total Expenses')}}{{currency_format_with_sym($expense)}}
@foreach($netProfitArray as $i=>$profit) @endforeach
{{__('Net Profit = Total Income - Total Expense')}}
{{__('Net Profit')}}{{currency_format_with_sym($profit)}}
@endsection @push('scripts') @endpush