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