<%= link_to t('.new', :default => t("helpers.links.new")),new_client_path,:class => 'btn btn-primary' %>
Client List
<% @clients.each do |client| %> <% end %>
Name Email Phone Address Product Type Created At Action
<%= client.name rescue '' %> <%= client.email rescue '' %> <%= client.phone rescue '' %> <%= client.address rescue '' %> <%= client.product_type rescue '' %> <%= client.created_at.strftime("%e,%b %Y %I:%M %p") rescue '' %> <%= link_to 'Detail', client_path(client), :class => 'btn btn-primary btn-sm' %> <%= link_to 'Edit', edit_client_path(client), :class => 'btn btn-primary btn-sm' %> <%= link_to 'Delete', clients_path(client), method: :delete, data: { confirm: 'Are you sure?' },:class => 'btn btn-primary btn-sm' %>
<%=paginate @clients %>