<html> <head> <title>Laravel | @yield('title', 'Home')</title> </head> <body> <div id='container'> @yield('content') </div> @section('footer') <script src="app"></script> @show </body> </html> @extends('layouts.master') @section('title', 'Dashboard') @include <h1>Dashboard</h1> @include('common.error', ['text' => 'エラー']) ... @endsection @section('footer') @parent <script src="dashboard.js"></scrip