<%= render partial: 'shared/header', locals: {links: false}%>

顧客一覧


お客様名

住所

<% @customers.each do |customer| %>
<%= 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 %>
<% end %>
<%= will_paginate @customers, previous_label: "前ページ", next_label: "次ページ" %>
<% if root? %> <%= link_to "顧客追加", new_customer_path, class: "button button4" %> <% end %>