@component('components.filters', ['title' => __('report.filters')])
{!! Form::open([
'url' => action([\App\Http\Controllers\ReportController::class, 'getContactsLongTimeNotActive']),
'method' => 'get',
'id' => 'getContactsLongTimeNotActive_form',
]) !!}
{!! Form::label('product_sr_date_filter', __('report.date_range') . ':') !!}
{!! Form::text('date_range', null, [
'placeholder' => __('lang_v1.select_a_date_range'),
'class' => 'form-control',
'id' => 'product_sr_date_filter',
'readonly',
]) !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!}
{!! Form::select('location_id', $business_locations ?? [], null, [
'class' => 'form-control select2',
'placeholder' => __('messages.all'),
'style' => 'width:100%',
'id' => 'location_id',
]) !!}
{!! Form::select('cg_filter', $customer_groups, null, ['class' => 'form-control', 'id' => 'cg_filter']) !!}
{!! Form::close() !!}
@endcomponent