1<!-- Stored in resources/views/child.blade.php -->
2
3@extends('layouts.app')
4
5@section('title', 'Page Title')
6
7@section('sidebar')
8 @parent
9
10 <p>This is appended to the master sidebar.</p>
11@endsection
12
13@section('content')
14 <p>This is my body content.</p>
15@endsection