LoginSignup
0
0

More than 5 years have passed since last update.

【随時更新】備忘録 laravelの基礎構文

Last updated at Posted at 2017-11-28

自分用なので、参考にならないかも。
備忘録として基礎のところから、随時適当に更新していくことにする。

コントローラーからviewに変数を渡す

// /hello  にアクセスした時、$msgに値を渡す
return view('hello.index',['msg'=>'フォームを入力:']);
web.php
//アクセス時に$id $pass に第一引数で指定した値を渡す(必須)
Route:get('hello/{id}{pass}',function($id,$pass){...})

//パラメーターをつけない場合でも表示が出るようにする書き方(任意)
Route:get('hello/{$msg?}',function($msg = 'メッセージが格納されていないときのデフォルトメッセージ'){...})
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0