Listing customers

<% @customers.each do |customer| %> <% end %>
Name Phone
<%= link_to customer.name, customer_locations_path(customer) %> <%=h customer.phone %> <%= link_to 'Edit', edit_customer_path(customer) %> <%= link_to 'Destroy', customer, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to 'New customer', new_customer_path %>