Listing things

<% @things.each do |thing| %> <% end %>
Name
<%= thing.name %> <%= link_to 'Show', thing %> <%= link_to 'Edit', edit_thing_path(thing) %> <%= link_to 'Destroy', thing, method: :delete, data: { confirm: 'Are you sure?' } %>

<%= link_to 'New Thing', new_thing_path %>