In my application, I am using activeadmin and paperclip(for uploading images).
I have below code in admin/customer.rb
ActiveAdmin.register Customer do
index do
column :first_name
column :email
column :phone
column :address
column :created_at
column :avatar
end
end