@component('components.filters', ['title' => __('report.filters')])
{!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'getOpeningStock']), 'method' => 'get', 'id' => 'opening_stock_report_filter_form' ]) !!}
{!! Form::label('product_id', __('lang.product') . ':') !!}
{!! Form::select('product_id', $products, null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!}
{!! Form::select('location_id', $business_locations, null, ['id' => 'location_id', 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('stock_id', __('stock.stock') . ':') !!}
{!! Form::select('stock_id', [], null, ['id' => 'stock_id', 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::close() !!}
@endcomponent