@extends('layouts.app') @section('title', __('Item Stock Report')) @section('content')

{{ __('Item Stock Report') }}

@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('location_id', __('purchase.business_location') . ':') !!}
{!! Form::label('search_product', __('lang_v1.search_product') . ':') !!}
{!! Form::label('category_id', __('product.category') . ':') !!} {!! Form::select('category_id', $categories, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => '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'), ]) !!}
@endcomponent
@component('components.widget', ['class' => 'box-primary'])
@lang('Item Name') @lang('report.current_stock') @lang('purchase.business_location') @lang('purchase.unit_selling_price') @lang('product.category')
@endcomponent
@endsection @section('javascript') @endsection