@component('components.filters', [
'title' => __('Filters'),
'class' => 'box-primary'
])
{!! Form::label('clv_date_range', __('Date Range:')) !!}
{!! Form::text('clv_date_range', null, ['placeholder' => __('Select Date Range'), 'class' =>
'form-control', 'id' => 'clv_date_range', 'readonly']) !!}
{!! Form::label('clv_location_id', __('Location:')) !!}
{!! Form::select('clv_location_id', $business_locations, null, ['class' => 'form-control select2',
'style' => 'width:100%',
'placeholder' => __('All Locations'), 'id' => 'clv_location_id']) !!}
{!! Form::label('clv_customer_group_id', __('Customer Group:')) !!}
{!! Form::select('clv_customer_group_id', [], null, ['class' => 'form-control select2',
'style' => 'width:100%',
'placeholder' => __('All Groups'), 'id' => 'clv_customer_group_id']) !!}
@endcomponent