Files
aperonight/app/helpers/application_helper.rb
2025-08-25 20:17:44 +02:00

6 lines
93 B
Ruby

module ApplicationHelper
def format_price(cents)
(cents.to_f / 100).round(2)
end
end