{!! Form::label('location_filter', __('purchase.business_location') . ':') !!}
{!! Form::select('location_filter', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all') ]); !!}
{!! Form::label('qty_available_filter', __('اكبر') . ':') !!}
{!! Form::select('qty_available_filter',
[
'option1' => 'اكبر',
// ... add more options as needed
],
null, // Selected value (null in this case)
[
'class' => 'form-control select2',
'style' => 'width:100%',
'placeholder' => __('lang_v1.all')
]
) !!}
@component('components.widget', ['class' => 'box-solid'])
@include('report.partials.stock_report_qty')
@endcomponent
@endsection
@section('javascript')
@endsection