@if ($call !== null)
{{-- Deepest tag category badge only --}} @php $deepestCat = !empty($call['tag_categories']) ? last($call['tag_categories']) : null; @endphp @if ($deepestCat)
{{ $deepestCat['name'] }}
@endif {{-- Title --}}

{{ $call['title'] }}

{{-- Location + expiry badges --}} @if (!empty($call['location']) || !empty($call['expiry_badge_text']))
@if (!empty($call['location']))

{{ $call['location'] }}

@endif @if (!empty($call['expiry_badge_text']))

{{ $call['expiry_badge_text'] }}

@endif
@endif
{{-- Excerpt --}} @if (!empty($call['excerpt']))

{{ $call['excerpt'] }}

@endif {{-- Callable avatar + name + location --}} @if (!empty($call['callable_name']))
@if (!empty($call['photo']))
{{ $call['callable_name'] }}
@endif
{{ $call['callable_name'] }} @if (!empty($call['callable_location'])) {{ $call['callable_location'] }} @endif
@endif
@livewire('reaction-button', [ 'typeName' => 'like', 'showCounter' => true, 'reactionCounter' => $call['like_count'], 'modelClass' => $call['model'], 'modelId' => $call['id'], 'size' => 'w-10 h-10', 'inverseColors' => true, ], key('like-call-main-' . $call['id']))
@endif