@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('category', __('product.category') . ':') !!}
{!! Form::select('category_id', $categories, null, [
'class' => 'form-control select2',
'style' => 'width:100%',
'id' => 'category_id',
'placeholder' => __('lang_v1.all'),
]) !!}
{!! Form::label('sub_category_id', __('product.sub_category') . ':') !!}
{!! Form::select('sub_category_id',[], null, [
'class' => 'form-control select2',
'style' => 'width:100%',
'id' => 'sub_category_id',
'placeholder' => __('lang_v1.all'),
]) !!}
{!! Form::label('brand', __('product.brand') . ':') !!}
{!! Form::select('brand_id', $brands, null, [
'class' => 'form-control select2',
'style' => 'width:100%',
'id' => 'brand_id',
'placeholder' => __('lang_v1.all'),
]) !!}
{!! Form::label('status', __('product.status') . ':') !!}
{!! Form::select('status', $statuses, null, [
'class' => 'form-control select2',
'style' => 'width:100%',
'id' => 'status_id',
'placeholder' => __('lang_v1.all'),
]) !!}
@endcomponent