Laravel 5.4在刀片中重新布线

Laravel 5.4在刀片中重新布线,laravel,Laravel,我需要返回到刀片上一页的按钮 我试着 {{route(back())}}不工作 {{back()}}不工作 {redirect(back())}不工作使用前面的方法 {{ URL::previous() }} 或者你也可以使用助手 // Get the current URL without the query string... echo url()->current(); // Get the current URL including the query string... ec

我需要返回到刀片上一页的按钮 我试着

{{route(back())}}不工作

{{back()}}不工作


{redirect(back())}不工作

使用前面的方法

{{ URL::previous() }}
或者你也可以使用助手

// Get the current URL without the query string...
echo url()->current();

// Get the current URL including the query string...
echo url()->full();

// Get the full URL for the previous request...
echo url()->previous();