Tenho o seguinte código:
<html>
<head>
<link href="/css/app.css" rel="stylesheet">
@yield('titulo')
</head>
<body>
<div class="container">
<div class="row">
@yield('conteudo')
</div>
</div>
</body>
</html>
O conteúdo ele trás normal, mas o titulo ele não trás.
listar.blade.php
@extends('layout')
@section('conteudo')
<h1>Listar Clientes</h1>
@stop
titulo.blade.php
@extends('layout')
@section('titulo')
<title> Testando include de titulo </title>
@stop
Todos os arquivos estão na raiz da view. Laravel 5.5