Redirect to Edit after saving in Laravel

If you want to go to edit page after saving an item , here is the code

$data = $request->only('title', 'body');
$item = Item::create($data);
return redirect()->route('edit_item',['id'=> $item->id]);

Leave a Reply

Your email address will not be published. Required fields are marked *