Files
aperonight/app/helpers/tickets_helper.rb
2025-09-16 16:36:39 +02:00

10 lines
186 B
Ruby

module TicketsHelper
def format_ticket_price(price_cents)
if price_cents == 0
"Gratuit"
else
number_to_currency(price_cents / 100.0, unit: "")
end
end
end