<%= customer.name %>
<%= customer.address %>
<%= link_to "詳細ページ", customer, class: "button button3" %>
<% if root? %>
<%= link_to "編集", edit_customer_path(customer), class: "button button3" %>
<%= link_to "削除", customer, method: :delete, data: { confirm: "本当に削除しますか? この操作は取り消すことができません。" }, class: "button button3" %>
<% end %>