La forma correcta de usar los layouts es siguiendo la estructura siguiente:
Plantilla base (base.blade.php)
<html>
<body>
@yield('contenido')
<footer>
@yield('footer')
</footer>
</body>
</html>
Cualquier vista
@extends('base')
@section('contenido')
<h1> Aquí algún contenido para esta vista </h1>
@stop
@section('footer')
<p> footer para esta vista </p>
@stop


