@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('type', __('lang_v1.transaction_type') . ':') !!}
{!! Form::select('type', $transaction_type, null, ['class' => 'filtervh', 'style' => 'width:100%', 'id' => 'transaction_type_qb', 'placeholder' => __('lang_v1.all')]); !!}
{!! Form::label('date_qb', __('lang_v1.date') . ':') !!}
{!! Form::text('date_qb', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly', 'id' => 'date_qb']); !!}
{!! Form::label('payee_qb', __('lang_v1.payee') . ':') !!}
{!! Form::select('payee_qb', $payee, null, ['class' => 'filtervh', 'style' => 'width:100%', 'id' => 'payee_qb', 'placeholder' => __('lang_v1.all')]); !!}
{!! Form::label('category_qb', __('lang_v1.category') . ':') !!}
{!! Form::select('category_qb', $category, null, ['class' => 'filtervh', 'style' => 'width:100%', 'id' => 'category_qb', 'placeholder' => __('lang_v1.all')]); !!}
@endcomponent
@include('business.partials.list_expense')
@can('stock_report.view')
@include('business.partials.list_all_sales')
@include('business.partials.list_invoices')
@include('business.partials.list_customers')
@include('business.partials.list_products')
@endcan