Email <%= customer.email %>
Primary Phone <%= number_to_phone(customer.primary_phone.gsub(/[^\d]/, '').to_i, area_code: true) if customer.primary_phone %>
Mobile Phone <%= number_to_phone(customer.mobile_phone.gsub(/[^\d]/, '').to_i, area_code: true) if customer.mobile_phone %>
Bill Address <%= customer.billing_address %>
Shipping Address <%= customer.shipping_address %>
Issues <%= customer.issues.count %>
Account Balance $<%= customer.balance %>
Balance With Jobs $<%= customer.balance_with_jobs %>
Notes <%= customer.notes %>
<%= button_to "Edit Customer", edit_customer_path(customer), method: :get%>