@extends('layouts.app') @section('title', __('lang_v1.cash_flow')) @section('content') @lang('lang_v1.cash_flow') @lang('report.filters'): {!! Form::label('account_id', __('account.account') . ':') !!} {!! Form::select('account_id', $accounts, '', ['class' => 'form-control', 'placeholder' => __('messages.all')]) !!} {!! Form::label('transaction_date_range', __('report.date_range') . ':') !!} {!! Form::text('transaction_date_range', null, ['class' => 'form-control', 'readonly', 'placeholder' => __('report.date_range')]) !!} {!! Form::label('transaction_type', __('account.transaction_type') . ':') !!} {!! Form::select('transaction_type', ['' => __('messages.all'),'debit' => __('account.debit'), 'credit' => __('account.credit')], '', ['class' => 'form-control']) !!} @can('account.access') @lang( 'messages.date' ) @lang( 'account.account' ) @lang( 'lang_v1.description' ) @lang('account.credit') @lang('account.debit') @lang( 'lang_v1.balance' ) @endcan @endsection @section('javascript') @endsection