@extends('layouts.app') @php $heading = __('product.due_stock_takes'); @endphp @section('title', $heading) @section('content') @include('layouts.partials.breadcrumb', [ 'page_title' => __('product.manage_due_stock_takes'), 'bread_crumbs' => [ ['title' => __('user.dashboard'), 'url' => ''], ['title' => __('product.due_stock_takes'), 'url' => ''] ] ])
@component('components.filters', ['title' => __('report.filters')]) {!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'getStockExpiryReport']), 'method' => 'get', 'id' => 'stock_report_filter_form' ]) !!}
@if(empty($only) || in_array('sell_list_filter_date_range', $only))
{!! Form::label('sell_list_filter_date_range', __('report.date_range') . ':',['class'=>'form-label']) !!} {!! Form::text('sell_list_filter_date_range', null, ['placeholder' => __('app.select_a_date_range'), 'class' => 'form-control', 'readonly']); !!}
@endif
{!! Form::label('stock_take_frequency', __('product.stock_take_frequency') . ':',['class'=>'form-label']) !!} {!! Form::text('stock_take_frequency', null, ['placeholder' => __('product.stock_take_frequency'), 'class' => 'form-control', 'min' => 0, 'step' => 1]); !!}
{!! Form::close() !!} @endcomponent
@component('components.widget', ['class' => 'box-body', 'title' => __('product.manage_due_stock_takes')])
@lang('product.product_name') @lang('product.sku') @lang('product.current_stock') @lang('product.stock_take_frequency') @lang('product.last_stock_take_date') @lang('product.pending_stock_take_date') @lang('messages.action')
@endcomponent
@stop @section('javascript') @parent @endsection