@if(userCan('page-create', $chapter))
@icon('add')
{{ trans('entities.pages_new') }}
@endif
@if(userCan('chapter-update', $chapter))
@icon('edit')
{{ trans('common.edit') }}
@endif
@if(userCan('chapter-update', $chapter) && userCan('chapter-delete', $chapter))
@icon('folder')
{{ trans('common.move') }}
@endif
@if(userCan('restrictions-manage', $chapter))
@icon('lock')
{{ trans('entities.permissions') }}
@endif
@if(userCan('chapter-delete', $chapter))
@icon('delete')
{{ trans('common.delete') }}
@endif
@include('partials.entity-export-menu', ['entity' => $chapter])