Nom complet :
{{ $data['name'] }}
Email :
{{ $data['email'] }}
@if(!empty($data['phone']))
Téléphone :
{{ $data['phone'] }}
@endif
Type de projet :
@php
$types = [
'creation-site' => 'Création de site web',
'branding' => 'Branding & identité visuelle',
'marketing' => 'Marketing digital',
'community' => 'Community management',
'accompagnement' => 'Accompagnement digital',
'maintenance' => 'Maintenance & support',
'autre' => 'Autre'
];
@endphp
{{ $types[$data['project_type']] ?? $data['project_type'] }}