Library / Tags

Tags

Free-form labels you can apply to multiple contacts.

@can('manage-tags') New tag
@csrf
Name
Accent
Add tag
@error('name')

{{ $message }}

@enderror
@endcan All tags {{ $tags->count() }} {{ \Illuminate\Support\Str::plural('tag', $tags->count()) }} @if ($tags->isEmpty())

No tags yet.

@else
    @foreach ($tags as $tag)
  • {{ $tag->name }}
    {{ $tag->contacts_count }} {{ \Illuminate\Support\Str::plural('contact', $tag->contacts_count) }}
    @can('manage-tags') Edit
    @csrf @method('DELETE') Delete
    @endcan
    @csrf @method('PATCH') Save Cancel
  • @endforeach
@endif