Customers


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

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

<% end %>
<%= Customer.count %> Customers - Last Sync: <%= Qbo.last_sync if Qbo.exists? %>