{{-- https://laravel.com/docs/master/blade --}} App Name - @yield('title') @section('sidebar') This is the master sidebar. @show
@yield('content')
@extends('layouts.master') @section('title', 'Page Title') @section('sidebar') @parent

This is appended to the master sidebar.

@endsection @section('content')

This is my body content.

@endsection {{-- This comment will not be present in the rendered HTML --}}