LoginSignup
1
0

More than 1 year has passed since last update.

Laravelのbladeテンプレートの作り方

Posted at

概念

  • レイアウトの親ファイルはresources/views/layoutsの中に入っている
  • コンポートのようなパーツは、resources/viewsの中に直で入っている

親レイアウトの作り方

いつも通りHTMLを書いて、コンポーネントのようなパーツを挿入したいところに@yield('パーツ名')を挿入するだけ

パーツの作り方

  1. @extends('layouts.親レイアウトの名前')を最初に挿入して、どのレイアウトを継承するかを書く

  2. @section('パーツ名')で書き出して、パーツの名前を指定。ここで使ったパーツ名を親レイアウトで使う

  3. @endsectionで書き終わり

1
0
1

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