17 lines
217 B
Ruby
Executable File
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
|