laravelに入り、ブレードテンプレートを操作しようとしていますが、レンダリングしていません。私の例はすべて、laravel のドキュメントに掲載されています。
更新だから、これが
リソース>ビュー> master.blade.phpにある
私のmaster.blade.phpファイルです
<!DOCTYPE html>
<html>
<head>
@yield('layouts.header')
</head>
<body>
<div class="container">
<div class="content">
<div class="title">Test to Laravel 5</div>
</div>
</div>
</body>
</html>
これが、view/layouts/ にある私のheader.blade.php ファイルです。
@section('header')
<title>cookie monster</title>
<link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
<style>
html, body {
height: 100%;
}
body {
margin: 0;
padding: 0;
width: 100%;
display: table;
font-weight: 100;
font-family: 'Lato';
}
.container {
text-align: center;
display: table-cell;
vertical-align: middle;
}
.content {
text-align: center;
display: inline-block;
}
.title {
font-size: 96px;
}
</style>
@endsection
ページをレンダリングしようとすると、現時点ではインライン css があってもスタイルが追加されません。これは、ブレード テンプレート エンジンがどのように機能するかをテストしているだけだからです。