@extends('layouts.app') @section('title', __('report.stock_expiry_report')) @section('content')

{{ __('report.stock_expiry_report')}}

@component('components.filters', ['title' => __('report.filters')]) {!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'getStockExpiryReport']), 'method' => 'get', 'id' => 'stock_report_filter_form' ]) !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('category_id', __('product.category') . ':') !!} {!! Form::select('category', $categories, null, ['placeholder' => __('lang_v1.all'), 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'category_id']); !!}
{!! Form::label('sub_category_id', __('product.sub_category') . ':') !!} {!! Form::select('sub_category', array(), null, ['placeholder' => __('lang_v1.all'), 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'sub_category_id']); !!}
{!! Form::label('brand', __('product.brand') . ':') !!} {!! Form::select('brand', $brands, null, ['placeholder' => __('lang_v1.all'), 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('unit', __('product.unit') . ':') !!} {!! Form::select('unit', $units, null, ['placeholder' => __('lang_v1.all'), 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('view_stock_filter', __('report.view_stocks') . ':') !!} {!! Form::select('view_stock_filter', $view_stock_filter, null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
@if(Module::has('Manufacturing'))

@endif {!! Form::close() !!} @endcomponent
@component('components.widget', ['class' => 'box-primary'])
@lang('business.product') SKU @lang('business.location') @lang('report.stock_left') @lang('lang_v1.lot_number') @lang('product.exp_date') @lang('product.mfg_date')
@endcomponent
@endsection @section('javascript') @endsection