@component('components.filters', [
'title' => __('advancedreports::lang.filters'),
'class' => 'box-primary'
])
{!! Form::label('df_date_range', __('advancedreports::lang.historical_period')) !!}
{!! Form::text('df_date_range', null, ['placeholder' =>
__('advancedreports::lang.select_date_range'), 'class' =>
'form-control', 'id' => 'df_date_range', 'readonly']) !!}
{!! Form::label('df_location_id', __('advancedreports::lang.location')) !!}
{!! Form::select('df_location_id', $business_locations, null, ['class' => 'form-control select2',
'style' => 'width:100%', 'id' => 'df_location_id']) !!}
{!! Form::label('df_category_id', __('advancedreports::lang.category')) !!}
{!! Form::select('df_category_id', $categories, null, ['class' => 'form-control select2',
'style' => 'width:100%', 'id' => 'df_category_id']) !!}
@endcomponent