5 lines
127 B
Ruby
5 lines
127 B
Ruby
module EtablissementHelper
|
|
def pretty_currency(capital_social)
|
|
number_to_currency(capital_social, locale: :fr)
|
|
end
|
|
end
|