このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
076server/resources/views/layouts/master.blade.php

14 行
277 B
PHP
Raw 通常表示 履歴

2018-01-24 13:41:28 +09:00
<html>
<head>
<title>Hack Store - @yield('title')</title>
</head>
<body>
@section('sidebar')
This is the master sidebar.
@show
<div class="container">
@yield('content')
2018-01-24 13:45:32 +09:00
</div>
2018-01-24 13:41:28 +09:00
</body>
</html>