@icon($deletion->deletable->getType())
{{ $deletion->deletable->name }}
@if($deletion->deletable instanceof \BookStack\Entities\Models\Book)
@icon('chapter') {{ trans_choice('entities.x_chapters', $deletion->deletable->chapters()->withTrashed()->count()) }}
@endif @if($deletion->deletable instanceof \BookStack\Entities\Models\Book || $deletion->deletable instanceof \BookStack\Entities\Models\Chapter)
@icon('page') {{ trans_choice('entities.x_pages', $deletion->deletable->pages()->withTrashed()->count()) }}
@endif
@if($deletion->deletable->getParent()) {{ trans('settings.recycle_bin_deleted_parent') }}:
@icon($deletion->deletable->getParent()->getType())
{{ $deletion->deletable->getParent()->name }}
@endif
{{ trans('settings.recycle_bin_deleted_by') }}:
@include('settings.parts.table-user', ['user' => $deletion->deleter, 'user_id' => $deletion->deleted_by])
{{ trans('settings.recycle_bin_deleted_at') }}:
{{ $deletion->created_at }}