@foreach ($chapters as $chapter)
@php
$chapterNorm = $chapter->resolve();
$rootChapter = $chapterNorm['root_parent'];
$catalog = $chapterNorm['catalog'];
@endphp
{{ $catalog->name }}
@if ($rootChapter)
{{ $rootChapter->title }}
@else
{{ $chapter->title }}
@endif
@endforeach