@component('components.filters', ['title' => __('report.filters')])
{!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'getStockExpiryReport']), 'method' => 'get', 'id' => 'stock_report_filter_form' ]) !!}
@if(empty($only) || in_array('sell_list_filter_date_range', $only))
{!! Form::label('sell_list_filter_date_range', __('report.date_range') . ':',['class'=>'form-label']) !!}
{!! Form::text('sell_list_filter_date_range', null, ['placeholder' => __('app.select_a_date_range'), 'class' => 'form-control', 'readonly']); !!}
@endif
{!! Form::label('stock_take_frequency', __('product.stock_take_frequency') . ':',['class'=>'form-label']) !!}
{!! Form::text('stock_take_frequency', null, ['placeholder' => __('product.stock_take_frequency'), 'class' => 'form-control', 'min' => 0, 'step' => 1]); !!}
{!! Form::close() !!}
@endcomponent