@props(['client'])

Informations

{{ $client->type === 'professionnel' ? 'Professionnel' : 'Particulier' }}
{{-- Statut TVA --}} @if($client->type === 'professionnel')
{{ $client->is_vat_subject ? 'Assujetti à la TVA' : 'Non assujetti à la TVA' }}
@endif @if($client->type === 'professionnel')
{{ $client->company_name }}
@if($client->matricule_fiscal && $client->is_vat_subject)
MF: {{ format_matricule_ellipsis($client->matricule_fiscal) }}
@endif @if($client->vat_number)
TVA: {{ $client->vat_number }}
@endif @if($client->rib)
RIB: {{ $client->rib }}
@endif @else @if($client->tax_id)
CIN: {{ $client->tax_id }}
@endif @endif @if($client->phone) @endif @if($client->email) @endif @if($client->type === 'particulier' && $client->birth_date)
{{ $client->birth_date->format('d/m/Y') }}
@endif @if($client->type === 'particulier' && $client->gender && $client->gender !== 'unknown')
{{ $client->gender === 'male' ? 'Homme' : 'Femme' }}
@endif @if($client->address)
{{ $client->address }}
@endif
@if($client->tags && $client->tags->count() > 0)
@foreach($client->tags as $tag) {{ $tag->name }} @endforeach
@else Ajouter des tags @endif
Modifier les coordonnées