@extends('layouts.app') @section('title', __('Stock Request')) @section('content') @lang('Stock Request') @lang('New Stock Request') {!! Form::label('location_id', __('Request From') . ':') !!} {!! Form::select('request_from', $business_locations, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'request_location', 'placeholder' => __('') ]) !!} {!! Form::label('location_id', __('Request To') . ':') !!} {!! Form::select('location_id', $business_locations, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'product_list_filter_location_id', 'placeholder' => __('') ]) !!} {!! Form::label('category_id', __('product.category') . ':') !!} {!! Form::select('category_id', $categories, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'product_list_filter_category_id', 'placeholder' => __('lang_v1.all') ]) !!} Search Products: @lang('Apply Filters') Stock Request Records @lang('Products') @csrf Submit Stock Count @include('stockrequest.partials.product_list', ['products' => collect()]) @endsection