Created
January 5, 2015 15:32
-
-
Save bkozora/6fb94f1c0955a528a3cd to your computer and use it in GitHub Desktop.
Blade - Define a Layout
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 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