For example In controller I have a store function
public function store(Request $request)
{
....
return redirect()->back();
}
After store function is called, it goes to the create.blade.php view because of return redirect()->back(). But I want to redirect to further one step backwards. How can I do that ? Thank You