{{ $manual->titulo }}
@php
function renderSectionsPdf($sections, $level = 2) {
foreach ($sections as $section) {
echo ''.$section->titulo.'';
echo $section->content?->contenido ?? '';
// if ($section->children->count()) {
// renderSectionsPdf($section->children, min($level+1, 6));
// }
}
}
@endphp
{!! renderSectionsPdf($manual->sections) !!}