@foreach ($contacts as $contact)
@php $avatarColor = match($contact->customer?->type) { 'customer' => 'bg-primary/10 text-primary border-primary/20', 'prospect' => 'bg-warning/10 text-warning border-warning/20', default => 'bg-info/10 text-info border-info/20', }; @endphp {{ substr($contact->firstname, 0, 1) }}{{ substr($contact->lastname, 0, 1) }} {{ $contact->firstname }} {{ $contact->lastname }} @if ($contact->email) {{ $contact->email }} @endif @if ($contact->customer) {{ $contact->customer->name }} {{ $contact->customer->type === 'customer' ? 'Client' : 'Prospect' }} @endif
@endforeach