| Actions | ||||
|---|---|---|---|---|
|
{{ $contact->email ?? '-' }}
@if($contact->email && $contact->email_verified_at)
@endif
|
{{ format_phone($contact->phone) ?: '-' }}
|
@if($contact->members_count > 0)
@php
$memberNames = $contact->members->take(3)->pluck('full_name')->implode(', ');
$remaining = $contact->members_count - 3;
@endphp
{{ $contact->members_count }} adhérent(s)
{{ $memberNames }}
@if($remaining > 0) ... +{{ $remaining }} @endif
@else
Aucun
@endif
|
||
| @if(request('search')) Aucun contact ne correspond à votre recherche. @else Aucun contact enregistré. @endif | ||||