Files
aperonight/app/helpers/application_helper.rb
Kevin BATAILLE a8a8c55041 working on header
2025-08-28 14:27:06 +02:00

10 lines
197 B
Ruby
Executable File

module ApplicationHelper
# Convert prince from cents to float
def format_price(cents)
(cents.to_f / 100).round(2)
end
# Include flash message helpers
include FlashMessagesHelper
end