Informations
No client
{{ $company['client_number'] ?? '—' }}
No client historique
{{ $company['legacy_client_number'] ?? '—' }}
Catégorie
{{ $company['membership_category'] ?? '—' }}
Statut compagnie
{{ $company['company_status'] }}
Statut paiement
{{ $company['membership_status'] }}
Site web
{{ $company['website'] ?? '—' }}
Adresse
{{ $company['full_address'] ?? '—' }}
Contacts ({{ $company['contacts_count'] }})
@if (count($company['contacts']) === 0)
Aucun contact enregistré pour cette compagnie.
@else
| Nom | Rôle | Téléphone | Courriel | Comités |
|---|---|---|---|---|
|
{{ $contact['name'] ?: '—' }}
@if ($contact['is_primary'])
Principal @endif |
{{ $contact['position'] ?? '—' }} | {{ $contact['phone'] ?? '—' }} | {{ $contact['email'] ?? '—' }} | {{ count($contact['committees']) > 0 ? implode(', ', $contact['committees']) : '—' }} |