- 2025/11/16
- Category :
[PR]
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

ステップアップしていくブログです。
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
// 普通にURLのルート以下を指定
// http://www.hoge.com/login にリダイレクト
Redirect::to('login');
// 識別名を付ける
Route::get('top', array('as' => 'home', 'uses' => 'TopController@index'));
// 識別名で指定して、 http://www.hoge.com/top にリダイレクト
Redirect::route('home');
// コントローラとアクションを指定してリダイレクト
Redirect::action('TopController@index');
// バリデーションエラーなどで入力も一緒にリダイレクト
Redirect::to('edit')->withInput();
// バリデーションエラーなどでエラーメッセージも一緒にリダイレクト
Redirect::to('edit')->withInput()->withErrors($validator);
$errors = new Illuminate\Support\MessageBag();
$errors->add('number', '整数で入力してください。');
Redirect::to('edit')->withInput()->withErrors($errors);
@if ($errors->has('number'))
{{{$errors->first('number')}}}
@endif