Listing customers

<% for customer in @customers %> <% end %>
Firstname Name
<%=h customer.firstname %> <%=h customer.name %> <%= link_to 'Show', customer_path(customer) %> <%= link_to 'Edit', edit_customer_path(customer) %> <%= link_to 'Destroy', customer_path(customer), :confirm => 'Are you sure?', :method => :delete %>

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