@extends('layouts.app_accounts') @section('title', __('lang_v1.cash_flow')) @section('content')
{{__('report.filters')}}
{!! Form::select('account_id', $accounts, '', ['class' => 'form-control', 'placeholder' => __('messages.all'),'id'=>'account_id']) !!} {!! Form::label('account_id', __('account.account') . ':') !!}
{!! Form::select('cash_flow_location_id', $business_locations, null, ['class' => 'form-control select2', 'id'=>'cash_flow_location_id','style' => 'width:100%']); !!} {!! Form::label('cash_flow_location_id', __('purchase.business_location') . ':') !!}
{!! Form::text('transaction_date_range', null, ['class' => 'form-control', 'id'=>'transaction_date_range','readonly', 'placeholder' => __('report.date_range')]) !!} {!! Form::label('transaction_date_range', __('report.date_range') . ':') !!}
{!! Form::select('transaction_type', ['' => __('messages.all'),'debit' => __('account.debit'), 'credit' => __('account.credit')], '', ['class' => 'form-control','id'=>'transaction_type']) !!} {!! Form::label('transaction_type', __('account.transaction_type') . ':') !!}
@component('components.widget') @can('account.access')
@lang( 'messages.date' ) @lang( 'account.account' ) @lang( 'lang_v1.description' ) @lang( 'lang_v1.payment_method' ) @lang( 'lang_v1.payment_details' ) @lang('account.debit') @lang('account.credit') @lang( 'lang_v1.account_balance' ) @show_tooltip(__('lang_v1.account_balance_tooltip')) @lang( 'lang_v1.total_balance' ) @show_tooltip(__('lang_v1.total_balance_tooltip'))
@endcan @endcomponent
@endsection @section('javascript') @endsection