Laravel - How to redirect with hash (#)

后端 未结 3 912
谎友^
谎友^ 2021-02-03 10:43

I have link :

example.com/register#register

If validation fails laravel redirects to :

example.com/register

w

3条回答
  •  心在旅途
    2021-02-03 11:01

    You could use helper:

    redirect()->route('route_name', [ 'some_param_for_route', '#hash' ])
    

提交回复
热议问题