Category Details

@if ($deleteErrorMessage) @endif

{{ $category->name }}

ID
{{ $category->id }}
Name
{{ $category->name }}
Description
{{ $category->description ?? 'No description provided' }}
Parent Category
@if ($category->parent) {{ $category->parent->name }} @else None (Top Level) @endif
Dynamic Field
@if ($category->dynamicField) {{ $category->dynamicField->name }} @else None @endif
Created At
{{ $category->created_at->format('F j, Y g:i A') }}
Last Updated
{{ $category->updated_at->format('F j, Y g:i A') }}

Child Categories

Categories that are children of this category

@if ($children->count() > 0)
    @foreach ($children as $child)
  • {{ $child->name }}

    {{ Str::limit($child->description, 50) }}

    {{ $child->entities_count }} entities Edit
  • @endforeach
@else
No child categories found.
@endif

Entities ({{ $entitiesCount }} total)

Entities assigned to this category

@if ($entities->count() > 0) @if ($entitiesCount > 10) @endif @else
No entities assigned to this category.
@endif
@if ($confirmingDelete)
Delete Category

Are you sure you want to delete the category "{{ $category->name }}"? This action cannot be undone.

@if ($deleteErrorMessage)
{{ $deleteErrorMessage }}
@endif
@if (!$deleteErrorMessage) @endif
@endif