Skip to content

Instantly share code, notes, and snippets.

@ekandreas
Created January 6, 2016 15:54
Show Gist options
  • Save ekandreas/7371d048a5efdb1725fb to your computer and use it in GitHub Desktop.
Save ekandreas/7371d048a5efdb1725fb to your computer and use it in GitHub Desktop.
<!-- 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