@extends('tri-layout') @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
{{--TODO--}}

{{ 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
{{--TODO--}}

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

@include('partials/loading-icon')
@stop @section('right')
{{ trans('common.actions') }}
@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)) @icon('edit') {{ trans('common.edit') }} @icon('sort') {{ trans('common.sort') }} @endif @if(userCan('restrictions-manage', $book)) @icon('lock') {{ trans('entities.permissions') }} @endif @if(userCan('book-delete', $book)) @icon('delete') {{ trans('common.delete') }} @endif
@stop @section('left') @if($book->tags->count() > 0)
@include('components.tag-list', ['entity' => $book])
@endif
{{ trans('common.details') }}
@if(count($activity) > 0)
{{ trans('entities.recent_activity') }}
@include('partials/activity-list', ['activity' => $activity])
@endif @stop