@component('components.widget')
@endcomponent
{{-- Filters + results. Category is the default active grouping. --}}
{!! Form::label('psp_category_id', __('lang_v1.psp_by_category') . ':') !!}
{!! Form::select('psp_category_id', $categories, null, ['class' => 'form-control select2 psp-entity', 'data-group' => 'category', 'style' => 'width:100%;', 'placeholder' => __('lang_v1.all')]) !!}
{!! Form::label('psp_brand_id', __('lang_v1.psp_by_brand') . ':') !!}
{!! Form::select('psp_brand_id', $brands, null, ['class' => 'form-control select2 psp-entity', 'data-group' => 'brand', 'style' => 'width:100%;', 'placeholder' => __('lang_v1.all')]) !!}
{!! Form::label('psp_supplier_id', __('lang_v1.psp_by_supplier') . ':') !!}
{!! Form::select('psp_supplier_id', $suppliers, null, ['class' => 'form-control select2 psp-entity', 'data-group' => 'supplier', 'style' => 'width:100%;', 'placeholder' => __('lang_v1.all')]) !!}
{!! Form::label('psp_period', __('lang_v1.psp_period') . ':') !!}
{!! Form::select('psp_period', [1 => __('lang_v1.psp_last_1_month'), 3 => __('lang_v1.psp_last_3_months'), 6 => __('lang_v1.psp_last_6_months'), 9 => __('lang_v1.psp_last_9_months'), 12 => __('lang_v1.psp_last_12_months')], 3, ['class' => 'form-control select2', 'id' => 'psp_period', 'style' => 'width:100%;']) !!}
{!! Form::label('psp_location_id', __('purchase.business_location') . ':') !!}
{!! Form::select('psp_location_id', $business_locations, null, ['class' => 'form-control select2', 'id' => 'psp_location_id', 'style' => 'width:100%;', 'placeholder' => __('lang_v1.all')]) !!}
@lang('lang_v1.psp_search_prompt')