Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
リクエスト元のページのパスを特定するにはどうすればよいですか?
私は試してみましたが、これらの2$request->path()つRequest::path()はリクエストが進行中のパスを返します..
$request->path()
Request::path()
これを試すことができます:
$request->header('referer');
また、次のURL::previousようになりますURL。
URL::previous
URL
\URL::previous();
更新:これを使用して、検証に失敗したときにユーザーをフォームに戻すことができます。
return redirect()->back(); // You may use ->withInput()->withErrors(...) as well