6 lines
93 B
Ruby
6 lines
93 B
Ruby
module ApplicationHelper
|
|
def format_price(cents)
|
|
(cents.to_f / 100).round(2)
|
|
end
|
|
end
|