| Full Name | ID Number | Mobile | City | Approved | Actions | |
|---|---|---|---|---|---|---|
| <%= customer.customer_name %> | <%= customer.idnumber %> | <%= customer.mobile_1 %> | <%= customer.email %> | <%= customer.city %> | <%= customer.verified? ? "Yes" : "No" %> |
<%= link_to "View", agent_portal_customer_path(customer), class: "btn btn-sm btn-outline-secondary" %>
<%= link_to "Edit", edit_agent_portal_customer_path(customer), class: "btn btn-sm btn-outline-primary" %>
<%= link_to "Delete", agent_portal_customer_path(customer),
data: { turbo_method: :delete, turbo_confirm: "Are you sure?" },
class: "btn btn-sm btn-outline-danger" %>
|