LoginSignup
0
0

More than 3 years have passed since last update.

【PHP(Laravel)】ControllerからViewにデータを渡す2つの方法

Posted at

概要

  1. ビューメソッドを使用してデータを渡すビューを指定する。
  2. データを渡す。(方法2つ)

1.ビューメソッドを使用してビューを指定する

例)articlesコントローラーのindexファイルを指定する

return view('articles.index')

2.データを渡す。(方法2つ)

データが入った変数 $articles をビューに渡す。

1.Withメソッドでデータを渡す。

return view('articles.index')->with(['articles' => $articles]);

2.Compact関数でデータを渡す。

return view('articles.index', compact('articles'));
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