Start making a master layout.

このコミットが含まれているのは:
テクニカル諏訪子 2018-01-24 13:41:28 +09:00
コミット 509be7bd05
1個のファイルの変更14行の追加0行の削除

14
resources/views/layouts/master.blade.php ノーマルファイル
ファイルの表示

@ -0,0 +1,14 @@
<html>
<head>
<title>Hack Store - @yield('title')</title>
</head>
<body>
@section('sidebar')
This is the master sidebar.
@show
<div class="container">
@yield('content')
</div>
</body>
</html>