@extends('sidebar-layout') @section('toolbar')
@include('books._breadcrumbs', ['book' => $book])
@icon('export'){{ trans('entities.export') }}
@if(userCan('page-create', $book)) @icon('add'){{ trans('entities.pages_new') }} @endif @if(userCan('chapter-create', $book)) @icon('add'){{ trans('entities.chapters_new') }} @endif @if(userCan('book-update', $book) || userCan('restrictions-manage', $book) || userCan('book-delete', $book)) @endif
@stop @section('sidebar') @if($book->tags->count() > 0)
@include('components.tag-list', ['entity' => $book])
@endif

@icon('info') {{ trans('common.details') }}

@if(count($activity) > 0)

@icon('time') {{ trans('entities.recent_activity') }}

@include('partials/activity-list', ['activity' => $activity])
@endif @stop @section('container-attrs') id="entity-dashboard" entity-id="{{ $book->id }}" entity-type="book" @stop @section('body')

{{$book->name}}

{!! nl2br(e($book->description)) !!}

@if(count($bookChildren) > 0)

@foreach($bookChildren as $childElement) @if($childElement->isA('chapter')) @include('chapters/list-item', ['chapter' => $childElement]) @else @include('pages/list-item', ['page' => $childElement]) @endif
@endforeach
@else

{{ trans('entities.books_empty_contents') }}

@if(userCan('page-create', $book)) @icon('page'){{ trans('entities.books_empty_create_page') }} @endif @if(userCan('page-create', $book) && userCan('chapter-create', $book))   -{{ trans('entities.books_empty_or') }}-    @endif @if(userCan('chapter-create', $book)) @icon('chapter'){{ trans('entities.books_empty_add_chapter') }} @endif
@endif

{{ trans('entities.search_results') }} @icon('close'){{ trans('entities.search_clear') }}

@include('partials/loading-icon')
@stop