| Name | Branch | Account Number | Status | Actions |
|---|---|---|---|---|
| <%= bank.name %> | <%= bank.branch %> | <%= bank.account_number %> | <% if bank.active? %> Active <% else %> Inactive <% end %> |
<%= link_to 'View', admin_portal_bank_path(bank), class: 'btn btn-sm btn-outline-dark rounded-pill px-3' %>
<%= link_to 'Edit', edit_admin_portal_bank_path(bank), class: 'btn btn-sm btn-light border rounded-pill px-3' %>
<%= button_to 'Delete', admin_portal_bank_path(bank),
method: :delete,
data: { confirm: 'Are you sure you want to delete this bank?', turbo: false },
class: 'btn btn-sm btn-danger rounded-pill px-3' %>
|
No banks have been added yet.
<%= link_to 'Add your first bank', new_admin_portal_bank_path, class: 'btn btn-dark rounded-pill shadow-sm' %>