Files
sx-fc/app/controllers/origami/cash_mgmt_controller.rb
2018-02-05 18:11:45 +06:30

17 lines
217 B
Ruby
Executable File

class Origami::CashMgmtController < ApplicationController
def index
end
def new
end
def create
end
#Shop Name in Navbor
helper_method :shop_detail
def shop_detail
@shop = Shop.first
end
end