| <%= 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' %>
|
<% end %>