Files
sx-fc/app/controllers/inventory/inventory_controller.rb
2018-02-23 15:29:22 +06:30

13 lines
289 B
Ruby
Executable File

class Inventory::InventoryController < BaseInventoryController
load_and_authorize_resource
def index
@products = InventoryDefinition.all.active.order('created_at desc')
end
#Shop Name in Navbor
helper_method :shop_detail
def shop_detail
@shop = Shop.first
end
end