@extends('layouts.master') @section('title') {{translate('cash_flow')}} @endsection @section('content')
{{translate('cash_flow')}} @if(!empty($start_date)) for period: {{$start_date}} to {{$end_date}} @endif

{{translate('date range')}}

{!! Form::open(array('url' => Request::url(), 'method' => 'post','class'=>'form-horizontal', 'name' => 'form')) !!}
{!! Form::text('start_date',null, array('class' => 'form-control date-picker', 'placeholder'=>"From Date",'required'=>'required')) !!}
to
{!! Form::text('end_date',null, array('class' => 'form-control date-picker', 'placeholder'=>"To Date",'required'=>'required')) !!}
{{translate('reset')}}!
{!! Form::close() !!}
{{translate('balance')}}
{{translate('receipt')}}
{{translate('capital')}} {{currency_converter($capital)}}
{{translate('loan principal repayment')}} {{currency_converter($principal_paid)}}
{{translate('loan interest repayment')}} {{currency_converter($interest_paid)}}
{{translate('loan penalty repayment')}} {{currency_converter($penalty_paid)}}
{{translate('loan fee repayment')}} {{currency_converter($fees_paid)}}
{{translate('saving deposit')}} {{currency_converter($deposits)}}
{{translate('other_income')}} {{currency_converter($other_income)}}
{{translate('total receipt')}} (A) {{currency_converter($total_receipts)}}
{{translate('payment')}}
{{translate('expense')}} {{currency_converter($expenses)}}
{{translate('payroll')}} {{currency_converter($payroll)}}
{{translate('loan released')}} ({{translate('principal')}}) {{currency_converter($principal)}}
{{translate('saving deposit')}} {{currency_converter($withdrawals)}}
{{translate('total payment')}} (B) ({{currency_converter($total_payments)}})
{{translate('total cash balance')}} (A) - (B) {{currency_converter($cash_balance)}}
@endsection @section('footer-scripts') @endsection