EXAMENS
PATIENT
{{ $patient_prenom }} {{ $patient_nom }} - {{ $patient_age }}
DATE DE PRESCRIPTION
{{ $date }}
PRESCRIPTION D'EXAMENS MĂDICAUX
@php
// Grouper les examens par type
$examensLabo = array_filter($examens, function($examen) {
return $examen->type_examen === 'labo';
});
$examensImagerie = array_filter($examens, function($examen) {
return $examen->type_examen === 'imagerie';
});
@endphp
@if(count($examensLabo) > 0)
EXAMENS DE LABORATOIRE
{{ count($examensLabo) }} examen(s)
@foreach($examensLabo as $examen)
âą {{ $examen->nom }}
@if($examen->commentaire)
@endif
@endforeach
@endif
@if(count($examensImagerie) > 0)
EXAMENS D'IMAGERIE MĂDICALE
{{ count($examensImagerie) }} examen(s)
@foreach($examensImagerie as $examen)
âą {{ $examen->nom }}
@if($examen->commentaire)
@endif
@endforeach
@endif
@if($commentaire_global)
@endif
{{ $professionnel_nom }}
{{ $professionnel_specialite }}
@if($professionnel_numero)
N° Ordre: {{ $professionnel_numero }}
@else
N° Ordre: Non spécifié
@endif