show do
attributes_table do
number_row :number, as: :human
end
endindex do
number_column :number, as: :currency, unit: "$", separator: ","
endIf you want to customize the default number format, you can pass the same options passed to Rails NumberHelper methods.

