コメント自体の上にコメントフォームを表示するにはどうすればよいですか。
作品
@post = Post.find(params[:id])
@post.comments.each do |comment|
comment.id
end
@post.comments.build
# form here
end
望ましいが失敗する
@post = Post.find(params[:id])
@post.comments.build
# form here
end
@post.comments.each do |comment|
comment.id
end