index.html.erb 663 Bytes
Newer Older
Troy Gabriel Ang Ko's avatar
Troy Gabriel Ang Ko committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<h1>Business Records</h1>

<%= link_to("New Business", new_business_path) %>

<table width="100%">
  <tr>
    <th>Name</th>
    <th>Registration Number</th>
    <th>Business Type</th>
    <th>Actions</th>
  </tr>
  <% @business.each do |post| %>
    <tr>
      <td><%= business.title %></td>
      <td><%= business.registration_number %></td>
      <td><%= business_type %></td>
      <td>
        <%= link_to "Show", business_path(business.id) %>
        <%= link_to "Edit", edit_business_path(business.id) %>
        <%= link_to "Delete", business_path(post.id), method: :delete, data: { confirm: 'Are you sure?' } %>
      </td>
    </tr>
  <% end %>
</table>