This is probably pretty basic, but I’m trying to figure out how to show how many comments a post has in rails, on the post index page of my app.
comments belongs_to post, and post has_many comments
Just not sure how to show on the index page, the amount of comments for each post.
Thanks in advance!
Elliot
Try this.
You might also be interested in the pluralize method.
This will output “3 comments” or “1 comment”, etc.