I have a User model and a Book model. A book belongs to a user and a user has many books.
In the view, I'm showing all the books a user has created in the user show view by doing
<% @user.books.each do |book| %>
<%= book.id %>
<%= book.title %>
<% end %>
But the book.id has a number that's unique to ALL the books in the database, not just per user. I want this id to be unique to the user, so if there's 1,000 books in the database and the user only has 3 of those books, it will show the ids as 1, 2 and 3 (instead of like 476, 239, 105, etc.).
How can this be done?