@component('backoffice._layouts.app', [ 'title' => 'Taxonomies' ]) @component('backoffice._components.pageHeading', ['breadcrumb' => null]) Taxonomies @slot('actions') Add entry @endslot @endcomponent @component('backoffice._components.pageContent') {{ html()->info() ->text(__('Make sure all items of a tag are disconnected before removing it.')) ->class('h-margin-top') }}
name | ||
---|---|---|
{{ $tag->name }} | @if($tag->taggable_count) {{ __('Linked to: :amount item(s)', ['amount' => $tag->taggable_count]) }} @endif | {{ html()->editButton(action('Backoffice\TagsController@edit', [$tag->id])) }} @if($tag->taggable_count === 0) {{ html()->deleteButton(action('Backoffice\TagsController@destroy', $tag->id)) }} @endif |