MASTE PAGE:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<meta name="csrf-token" content="{{csrf_token()}}">
@yield('metas')
@yield('head')
@yield('style')
</head>
<title>@yield('title')</title>
<body class="skin-blue sidebar-mini">
@yield('body')
</body>
<footer>
@yield('footer')
@yield('script_whole')
</footer>
</html>
ДЕТСКИЕ СТРАНИЦЫ:
@extends('path.to.master_page')
@section('head')
//head elemetns here
@endsection
@section('style')
//style here
@endsection
@section('title', 'my_title')
@section('content')
//content elemetns here
@endsection
@section('footer')
//footer elemetns here
@endsection
@section('script_whole')
//scripts here
@endsection
и теперь каждая страница, которая extends
из MASTER_page, поэтому следует использовать @section