@extends('layouts.adminLayout.admin_design') @section('content')
@php if(isset($parent_product_id)){ $productInfo = \App\Models\Products::getProductsByProductId($parent_product_id); $product_name = '['.$productInfo->product_name.']'; } @endphp

{{ $title }} {{isset($product_name)?$product_name:""}}

{{ Form::open(['url' => route('inventory_export'), 'method'=>'POST', 'name' => 'inventory_export', 'id' => 'inventory_export']) }}
@if(Helper::checkAccess('product_inventory_export')) {{ Form::button(' '. __('lbl.export'), ["class"=>"clickbtncommon btn btn-sm btn-primary","value"=>"xlsx","name"=>"export",'type' => 'submit']) }} @endif @if(Helper::checkAccess('product_inventory_import')) @endif {{__('lbl.import')}}
{{ Form::close()}}
{{ __('lbl.sku') }} {{ __('lbl.product_name') }} {{ __('lbl.barcode') }} {{ __('lbl.cost') }} {{ __('lbl.bin_value') }} {{ __('lbl.min') }} {{ __('lbl.max') }} {{ __('lbl.vendor') }} {{ __('lbl.on_order') }} {{ __('lbl.umo') }} {{ __('lbl.beginning_inventory') }} {{ __('lbl.total') }} {{ __('lbl.action') }}  
{{Form::hidden('damageInventoryAdd',route('damageInventoryAdd'),['id'=>'damageInventoryAdd'])}} {{Form::hidden('primaryvendorAdd',route('primaryvendorAdd'),['id'=>'primaryvendorAdd'])}} {{Form::hidden('actualInventoryAdd',route('actualInventoryAdd'),['id'=>'actualInventoryAdd'])}} {{Form::hidden('inventoryTable','productinventorylist',['id'=>'inventoryTable'])}} @endsection @section('pagescript') {!! Helper::datatablelib('productinventory/list.js') !!} @stop