Laravel/共通テンプレート

resources/views/layout.blade.php
!DOCTYPE html>
html>
    head>
        meta charset='utf-8'>
        title>bbs/title>
    /head>
    body>
        @yield('content')
    /body>
/html>

resources/views/index.blade.php
@extends('layout')
@section('content')
    h1>bbs/h1>
    p>{{ $message }}/p>
@endsection