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