BookStackApp/BookStack

View on GitHub
resources/views/exports/parts/book-contents-menu.blade.php

Summary

Maintainability
A
0 mins
Test Coverage
@if(count($children) > 0)
    <ul class="contents">
        @foreach($children as $bookChild)
            <li><a href="#{{$bookChild->getType()}}-{{$bookChild->id}}">{{ $bookChild->name }}</a></li>
            @if($bookChild->isA('chapter') && count($bookChild->visible_pages) > 0)
                @include('exports.parts.chapter-contents-menu', ['pages' => $bookChild->visible_pages])
            @endif
        @endforeach
    </ul>
@endif