Go back URL in Laravel 5.1

后端 未结 1 574
日久生厌
日久生厌 2021-02-02 05:43

How can I get the previous URL visited on the website in Laravel 5.1?

In Laravel 4 I just needed to write it like below:

{{ URL::previous() }}

1条回答
  •  伪装坚强ぢ
    2021-02-02 05:59

    The cleanest way seems to be using the url() helper:

    {{ url()->previous() }}
    

    URL::previous() works for me in my Laravel 5.1 project. Here is Laravel 5.1 doc for previous() method, which is accessible through URL Facade.

    You can still try alternatives, in your views you can do:

    {{ redirect()->getUrlGenerator()->previous() }}
    

    or:

    {{ redirect()->back()->getTargetUrl() }}
    

    0 讨论(0)
提交回复
热议问题