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.
検証チェックのエラーでページに戻ろうとしています。これは機能しません。これを行う適切な方法は何ですか?
$route = "staff/" . $staff->staff_id; return Redirect::to_route($route) ->with_errors($validation);
これを試して元に戻すことができます(Laravel 3を想定)
return Redirect::back()->with_errors($validation);
またはこれ
return Redirect::back()->with_errors($validation)->with_input();
したがって、ルートについて言及する必要はありません。これは私のプロジェクトの 1 つでテストされています。