Add an anchor to Laravel redirect back

后端 未结 2 598
無奈伤痛
無奈伤痛 2021-02-18 21:49

In a Laravel controller I have this redirect:

    return redirect()->back();

Which returns me to my previous page (say http://domain/page).

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-18 22:40

    You can use these helpers for laravel 5.5 and above - no imports :-)

    return redirect()->to(url()->previous() . '#hash');
    

提交回复
热议问题