Customers


<%= form_tag(customers_path, :method => "get", id: "search-form") do %> <%= text_field_tag :search, params[:search], placeholder: "Search Customers" %> <%= submit_tag "Search" %> <% end %>
<% if @customers.present? %>
<% @customers.each do |c| %>
<%= c.name %> <%= button_to "Show", customer_path(c.id), method: :get %>
<% end %> <% else %>

There are no customers containing the term(s) <%= params[:search] %>.

<% end %>
<%= will_paginate @customers %> <%= button_to "New", new_customer_path, method: :get %>