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