如何确定发出请求的网页的路径?
我尝试了$request->path()
或Request::path()
,但这两个会返回请求的路径..
答案 0 :(得分:6)
你可以试试这个:
$request->header('referer');
同样URL::previous
会为您提供URL
,例如:
\URL::previous();
更新:您可以使用此功能在验证失败时将用户发回表单:
return redirect()->back(); // You may use ->withInput()->withErrors(...) as well