demarches-normaliennes/app/helpers/etablissement_helper.rb

6 lines
160 B
Ruby
Raw Normal View History

module EtablissementHelper
def pretty_currency(capital_social)
number_to_currency(capital_social, delimiter: ' ', unit: '€', format: '%n %u')
end
end