Customers


<% @customers.each do |c| %>
<%= render :partial => 'customers/details', locals: {customer: c} %> <%= button_to "Show", customer_path(c.id), method: :get %>
<% end %>
<%= will_paginate @customers %> <%= button_to "New", new_customer_path, method: :get %>