Laravel5.5初心者。
bladeの@appendの使い方メモです。
@sectionの閉じ部分を@appendにすればいい。
index.blade.php
@extends('layouts.default')
@section('content')
content!<br>
@endsection
@section('content')
contentに追記<br>
@append
結果
content!
contentに追記
element的な他のビューでも同様。
適当にincludeするビュー
test.blade.php
@section('content')
includeしたblade内からcontentを追記
@append
レイアウト
index.blade.php
@extends('layouts.default')
@section('content')
content!<br>
@endsection
@section('content')
contentに追記<br>
@append
@include('test')
結果
content!
contentに追記
includeしたblade内からcontentを追記
こういう細かい所含めて体系的にまとまってるドキュメントはないだろうか。。
どうにも情報が細切れで散らばっている感がある。