@extends('layouts.master') @section('title') {{trans_choice('general.cash_flow',1)}} @endsection @section('content')

{{trans_choice('general.cash_flow',1)}} @if(!empty($start_date)) for period: {{$start_date}} to {{$end_date}} @endif

{!! Form::open(array('url' => Request::url(), 'method' => 'get','class'=>'form-horizontal', 'name' => 'form')) !!}
{!! Form::text('start_date',$start_date, array('class' => 'form-control date-picker', 'placeholder'=>"From Date",'required'=>'required')) !!}
{!! Form::text('end_date',$end_date, array('class' => 'form-control date-picker', 'placeholder'=>"To Date",'required'=>'required')) !!}
{!! Form::select('branch_id',$branches,$branch_id, array('class' => 'form-control ','placeholder'=>'Select Branch','id'=>'')) !!}
{{trans_choice('general.reset',1)}}!
{!! Form::close() !!}
{{trans_choice('general.balance',1)}}
{{trans_choice('general.receipt',2)}}
{{trans_choice('general.contribution',2)}} {{number_format($contributions,2)}}
{{trans_choice('general.pledge',2)}} {{number_format($pledges,2)}}
{{trans_choice('general.event',1)}} {{trans_choice('general.payment',2)}} {{number_format($events,2)}}
{{trans_choice('general.other_income',1)}} {{number_format($other_income,2)}}
{{trans_choice('general.total',1)}} {{trans_choice('general.receipt',2)}} (A) {{number_format($total_receipts,2)}}
{{trans_choice('general.payment',2)}}
{{trans_choice('general.expense',2)}} {{number_format($expenses,2)}}
{{trans_choice('general.payroll',1)}} {{number_format($payroll,2)}}
{{trans_choice('general.total',1)}} {{trans_choice('general.payment',2)}} (B) ({{number_format($total_payments,2)}})
{{trans_choice('general.total',1)}} {{trans_choice('general.cash',1)}} {{trans_choice('general.balance',1)}} (A) - (B) {{number_format($cash_balance,2)}}
@endsection @section('footer-scripts') @endsection