<%= notice %>

Students

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

<%= link_to 'New Student', new_student_path %>