@component('components.filters', ['title' => __('report.filters')])
@includeIf('locations::layouts.location_filter', ['col' => 4])
{!! Form::label('tag_ids', __('lang.tags') . ':') !!}
{!! Form::select('tag_ids[]', getTags(), $request['tag_ids']??null , ['class' => 'form-control select', 'id' => 'tag_id', 'multiple' => 'multiple', 'style' => 'width: 100% !important;']) !!}
{!! Form::select(
'balance_type',
[
'balance' => __('lang.balance'),
'not_balance' => __('lang.not_balance'),
],
'balance',
['class' => 'form-control', 'id' => 'balance_type', 'placeholder' => __('lang.all')],
) !!}
@endcomponent