@extends('layouts.app') @section('title', 'Inventory List') @section('content')

Inventory

AddNew Back
{{-- Alert Messages --}} @include('common.alert')
All Products
@foreach ($products as $row) @endforeach
PID Item_Code UPC Item Stock Currency Cost MRP R_Price W_Price Value Action
{{$row->id}} {{$row->itemcode}} {{$row->upc}} {{$row->item}} {{$row->stockinhand}} {{$row->currency}} {{$row->Cost}} {{$row->mrpprice}} {{$row->rprice}} {{$row->wprice}} {{$row->stockvalue}}
{{$products->links()}}
@if ($products->count() > 0 ) @if(isset($products) && !empty($products)) @include('inventroy.delete_inventoryModel') @endif @endif @endsection @section('scripts') @endsection