@extends('layouts.app') @section('title', __('lang_v1.product_stock_history')) @section('content')

@lang('lang_v1.product_stock_history')

@component('components.widget', ['title' => $product->name])
{!! Form::label('product_id', __('sale.product') . ':') !!} {!! Form::select('product_id', [$product->id=>$product->name], $product->id, ['class' => 'form-control', 'style' => 'width:100%']); !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, request()->input('location_id', null), ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('stock_id', __('stock.stock') . ':') !!} {!! Form::select('stock_id', ['' => 'Selected'] + $stocks, request()->input('stock_id', null), ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{{--
{!! Form::label('date_range_value', __('report.date_range') . ':') !!} {!! Form::text('date_range_value', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly']); !!}
--}} @if($product->type == 'variable')
@else @endif @endcomponent @component('components.widget') @endcomponent
@endsection @section('javascript') @endsection