Skip to content

Instantly share code, notes, and snippets.

@bkozora
Created January 5, 2015 15:32
Show Gist options
  • Save bkozora/6fb94f1c0955a528a3cd to your computer and use it in GitHub Desktop.
Save bkozora/6fb94f1c0955a528a3cd to your computer and use it in GitHub Desktop.
Blade - Define a Layout
<!-- Stored in app/views/layouts/master.blade.php -->
<html>
<body>
@section('sidebar')
This is the master sidebar.
@show
<div class="container">
@yield('content')
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment