16 lines
220 B
Ruby
16 lines
220 B
Ruby
class Api::Restaurant::BillController < Api::ApiController
|
|
|
|
|
|
#Create invoice based on booking
|
|
#Output and invoice
|
|
def create
|
|
|
|
end
|
|
|
|
|
|
private
|
|
def bill_params
|
|
params.permit(:booking_id, :order_id)
|
|
end
|
|
end
|