In a Laravel controller I have this redirect:
return redirect()->back();
Which returns me to my previous page (say http://domain/page).
You can use these helpers for laravel 5.5 and above - no imports :-)
return redirect()->to(url()->previous() . '#hash');