I have two models: posts and comments. Each comment belongs to a post. I would like to have a page of all comments not just the comments for a post. I can't seem to get this seemingly simple thing to work.
Here is my controller:
def top
@topcomments = @comments.order("created_at desc")
end
I am getting an 'undefined method order' error.