@if(session('success'))
{{ session('success') }}
@endif
@if($errors->any())
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
Famille :
{{ $user->nom.' '.$user->prenoms }}
/ Matricule :
{{ $user->numeroAdherent }}
/ Sexe:
{{ $user->sexe }}
Liste des Bénéficiaires
@php
$itemsPerPage = 1
@endphp
@foreach($beneficiaries as $index => $beneficiary)
{{ $beneficiary->nomBeneficiaire }} {{ $beneficiary->prenomsBeneficiaire }}
Matricule bénéficiaire :
{{ $beneficiary->numeroBeneficiaire }}
Matricule assuré :
{{ $beneficiary->numeroAdherent }}
Sexe :
{{ $beneficiary->sexe }}
Lien de parenté :
@if ($beneficiary->codeLienParente == "A")
Assuré principal
@elseif ($beneficiary->codeLienParente == "C")
Conjoint(e)
@else
Enfant
@endif
@endforeach
{{-- --}}