@if($book->restricted || ($page->chapter && $page->chapter->restricted) || $page->restricted)
@if($book->restricted)
@if(userCan('restrictions-manage', $book))
Book restricted
@else
Book restricted
@endif
@endif
@if($page->chapter && $page->chapter->restricted)
@if(userCan('restrictions-manage', $page->chapter))
Chapter restricted
@else
Chapter restricted
@endif
@endif
@if($page->restricted)
@if(userCan('restrictions-manage', $page))
Page restricted
@else
Page restricted
@endif
@endif
@endif
@include('pages/sidebar-tree-list', ['book' => $book, 'sidebarTree' => $sidebarTree])