webapp/resources/views/layouts/app.blade.php

16 lines
343 B
PHP
Raw Normal View History

2018-04-09 21:38:31 +02:00
<!-- Stored in resources/views/layouts/app.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>