@component('components.filters', [
'title' => __('report.filters'),
'class' => 'box-primary'
])
{!! Form::label('location_id', __('purchase.business_location') . ':') !!}
{!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2',
'style' => 'width:100%', 'id' => 'location_filter']) !!}
{!! Form::label('start_date', __('business.start_date') . ':') !!}
{!! Form::text('start_date', '', ['class' => 'form-control', 'id' => 'start_date', 'readonly']) !!}
{!! Form::label('end_date', __('advancedreports::lang.end_date') . ':') !!}
{!! Form::text('end_date', '', ['class' => 'form-control', 'id' => 'end_date', 'readonly']) !!}
@endcomponent