最終更新:2018-03-21 (水) 10:01:39 (2234d)  

Route::get
Top / Route::get

Route::get($uri, $callback);

デフォルト

  • Route::get('/', function () {
        return view('welcome');
    });
  • view

コントローラ

  • コントローラ名@アクション名
  • Route::get('/', 'Index@index');
  • Laravel/プロジェクト/app/Http/Controllers/index.php?のindex()メソッド

メモ

  • {msg}
    
    {id?}
    
    [[__invoke]] - シングルアクションコントローラ
    
    
    -get()->middleware(ミドルウェア名)

関連