@extends('backEnd.layouts.master') @section('title', 'Customer Tags') @section('content')

Customer Tags (Manual)

Create tags and assign from Customer Insights page
Add Tag
@csrf
@forelse($tags as $tag) @empty @endforelse
Tag Slug Assigned Status Actions
{{ $tag->name }} {{ $tag->slug }} {{ $tag->assignments_count ?? $tag->assignments()->count() }} @if($tag->is_active) Active @else Off @endif
@csrf @method('DELETE')
@csrf @method('PUT')
is_active ? 'checked' : '' }}>
No tags yet. Create one on the left.
@if($tags->hasPages()) @endif
@endsection @push('styles') @endpush