@extends('admin.layout')@section('content')

Inventory Count

{!! Form::open(array('url' =>'admin/updateaddcount', 'method'=>'post', 'class' => 'form-horizontal form-validate', 'enctype'=>'multipart/form-data')) !!}
@if(session()->has('message'))
Product Count Saved .
@endif

{!! Form::close() !!}
@if(count($results['otherdata'])>0) @foreach($results['otherdata'] as $otherdatas) @endforeach @endif
Your Last Counted Items

{{$otherdatas->sku}} / {{$otherdatas->product_name}}
( {{$otherdatas->count}} )
@endsection