Inventory

Low Inventory
Out of Stock
Inactive
Active
Item
UPC
Price
Active
Qty
{{ item.name }}
{{ item.upc }}
{{item.price}}
{{item.status}}
var app = angular.module('myApp', []); app.controller('myCtrl', function($scope) { $scope.search=[]; $scope.inventory = [{ name: 'Chicken Sammy', upc: '7225210090', price: '5.00', status: 'inactive', qty: '0' }, { name: 'Cliff Bar', upc: '7225210091', price: '2.00', status: 'active', qty: '30' }, { name: 'Beef Jerkey', upc: '7225210092', price: '3.50', status: 'active', qty: '1' }, { name: 'Snickers', upc: '7225210093', price: '0.75', status: 'inactive', qty: '14' }, { name: 'jHustle', upc: '7225210094', price: '99.00', status: 'inactive', qty: '0' }]; $scope.sortOrder = "name"; });