i have a little question on laravel Forms, supposing that i have a 1:n relation, like one post can have many comments, and many comments are for one post only.
I want to have an single edit page for all the comments of one post.
I have in CommentsController@edit :
$post = Post::findOrFail($id);
$comments = $post->comments;
return view('comments.edit', compact('comments'));
Is it possible to make a single form for all those comments ? I mean that i have one button 'Save' for all the comments.
im using laravel 5
thanks