@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->sku], $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%']); !!}
@if($product->type == 'variable')
@else @endif @endcomponent @component('components.widget') @endcomponent
@endsection @section('javascript') @endsection