2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

viewメソッドの使い方(laravel)

Posted at

#viewメソッドの第一引数について

view('フォルダ名.ファイル名')

第一引数
laravel内のviewsフォルダ内にあるファイルを検索して表示させます。

#viewメソッドの第二引数について

view('フォルダ名.ファイル名', 使いたい配列)

使いたい配列ってなんやねんと思ったでしょう。
具体例を書きます。

こんにちは

まずは、上記をcontrollerでviewメソッドの第二引数を使って表示したいとする。
すると、viewの方では

index.php

<p><?php echo $msg; ?>

とすると、コントローラーには・・・

hello.controller
public function index () {
     
     $data = ['msg' => 'こんにちは'];
     return view('hello.index', $data);
}

こんな感じに書けばOKです!!
入れたい変数(index.phpで使いたい変数)を配列のキーに名前を入れておけば自動的に持っていってくれるということです。laravel作った人、本当に天才。

2
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
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?