@component('components.filters', ['title' => __('report.filters')])
{!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'getSellReport']), 'method' => 'get', 'id' => 'sell_report_filter_form' ]) !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!}
{!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('category_id', __('category.category') . ':') !!}
{!! Form::select('category', $categories, null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'category_id']); !!}
{!! Form::label('sub_category_id', __('product.sub_category') . ':') !!}
{!! Form::select('sub_category', array(), null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'sub_category_id']); !!}
{!! Form::label('brand', __('product.brand') . ':') !!}
{!! Form::select('brand', $brands, null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('unit',__('product.unit') . ':') !!}
{!! Form::select('unit', $units, null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
{{--
{!! Form::label('sell_report_filter_date', __('Date') . ':') !!}
{!! Form::date('sell_report_filter_date', \Carbon\Carbon::now()->format('Y-m-d'), ['class' => 'form-control']); !!}
--}}
@if(empty($only) || in_array('sell_report_filter_date_range', $only))
{!! Form::label('sell_report_filter_date_range', __('report.date_range') . ':') !!}
{!! Form::text('sell_report_filter_date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly']); !!}
@endif
{!! Form::close() !!}
@endcomponent