Last active
January 6, 2016 16:03
-
-
Save ekandreas/a1ae5cba27a2c55d0036 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Stored in views/child.blade.php --> | |
@extends('layouts.master') | |
@section('title', 'Page Title') | |
@section('sidebar') | |
@parent | |
<p>This is appended to the master sidebar.</p> | |
@endsection | |
@section('content') | |
<p>This is my body content.</p> | |
@endsection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment