@extends('layouts/pos_layout') @section('title', '| Product UOM List') @section('content') @include('successMsg')

PRODUCT UOM LIST

{{ csrf_field() }} @if(!empty($productUOMs)) @foreach($productUOMs as $productUOM) @endforeach @endif
SL# UOM PID/IMEI Active Action
{{++$no}} {{$productUOM->name}} {{($productUOM->status == '1') ? 'Yes' : 'No'}}  
@include('dataTableScript') @endsection