@extends('layouts.app') @section('title', __('Stock Takes')) @section('content') @lang('Stock Takes') Stock Take Records {!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! 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') ]) !!} {!! Form::label('brand_id', __('product.brand') . ':') !!} {!! Form::select('brand_id', $brands, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'product_list_filter_brand_id', 'placeholder' => __('lang_v1.all') ]) !!} Search Products: @lang('Apply Filters') @lang('Products') @csrf Submit Stock Count Show per page: 25 50 100 200 500 1000 All @include('stocktake.partials.product_list', ['products' => $products, 'perPage' => $perPage ?? 25]) @endsection