タイトル: コントローラー内で他のコントローラーを呼び出す方法
redirectを使用する方法
postした後に、URL更新で再度postを防ぐ場合等に便利。
public function post(Request $request) { //POST処理 return redirect('/index'); } |
postした後に、URL更新で再度postを防ぐ場合等に便利。
public function post(Request $request) { //POST処理 return redirect('/index'); } |