Created
January 6, 2016 15:54
-
-
Save ekandreas/7371d048a5efdb1725fb 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/layouts/master.blade.php --> | |
<html> | |
<head> | |
<title>App Name - @yield('title')</title> | |
</head> | |
<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