{{$book->name}}
-{!! nl2br(e($book->description)) !!}
+{{$book->name}}
+{{ trans('entities.books_empty_contents') }}
@@ -52,43 +61,46 @@ @endif{{ trans('common.details') }}
-{{ trans('common.actions') }}
-@if(userCan('book-update', $book)) - + @icon('edit') {{ trans('common.edit') }} - + @icon('sort') {{ trans('common.sort') }} @endif + @if(userCan('book-create-all')) + + @icon('copy') + {{ trans('common.copy') }} + + @endif @if(userCan('restrictions-manage', $book)) - + @icon('lock') {{ trans('entities.permissions') }} @endif @if(userCan('book-delete', $book)) - + @icon('delete') {{ trans('common.delete') }} @@ -121,7 +139,15 @@
- @include('partials.entity-export-menu', ['entity' => $book]) + @if($watchOptions->canWatch() && !$watchOptions->isWatching()) + @include('entities.watch-action', ['entity' => $book]) + @endif + @if(!user()->isGuest()) + @include('entities.favourite-action', ['entity' => $book]) + @endif + @if(userCan('content-export')) + @include('entities.export-menu', ['entity' => $book]) + @endif