@props([ 'type' => 'default', 'title' => '', 'subtitle' => '', 'url' => '#', 'timestamp' => null, 'meta' => null, 'highlighted' => false, ]) {{-- Search Result Item ────────────────── A single result row for the global search results page. Usage: --}} @php $typeConfig = match($type) { 'contact' => ['bg' => 'bg-info/10', 'text' => 'text-info', 'label' => 'Contact'], 'conversation' => ['bg' => 'bg-success/10', 'text' => 'text-success', 'label' => 'Conversation'], 'message' => ['bg' => 'bg-brand/10', 'text' => 'text-brand', 'label' => 'Message'], 'campaign' => ['bg' => 'bg-warning/10', 'text' => 'text-warning', 'label' => 'Campaign'], 'deal' => ['bg' => 'bg-accent/10', 'text' => 'text-accent', 'label' => 'Deal'], 'document' => ['bg' => 'bg-muted/10', 'text' => 'text-muted', 'label' => 'KB Article'], 'workflow' => ['bg' => 'bg-brand/10', 'text' => 'text-brand', 'label' => 'Workflow'], default => ['bg' => 'bg-muted/10', 'text' => 'text-muted', 'label' => ucfirst($type)], }; @endphp {{-- Type icon --}}
@switch($type) @case('contact') @break @case('conversation') @break @case('message') @break @case('campaign') @break @case('deal') @break @case('document') @break @case('workflow') @break @default @endswitch
{{-- Content --}}

{{ $title }}

{{ $typeConfig['label'] }}
@if($subtitle)

{{ $subtitle }}

@endif
@if($meta) {{ $meta }} @endif @if($timestamp) {{ $timestamp }} @endif
{{-- Arrow --}}