@php
if (!function_exists('__boolval')) {
function __boolval($v) {
if (is_null($v)) return false;
if (is_bool($v)) return $v;
if (is_numeric($v)) return intval($v) === 1;
if (is_string($v)) return in_array(strtolower($v), ['1','true','oui','yes']);
return false;
}
}
$auth1_val = __boolval($child->authorized_take_activities_child ?? null);
$auth2_val = __boolval($child->authorized_transport_child ?? null);
$auth3_val = __boolval($child->authorized_heal_child ?? null);
$auth4_val = __boolval($child->authorized_photo_child ?? null);
$swim_val = __boolval($child->swim_child ?? null);
$leave_val = __boolval($child->leave_alone_child ?? null);
@endphp
Identité de l'enfant
| Nom |
{{ $child->name_child ?? '' }}
|
Prénom |
{{ $child->firstname_child ?? '' }}
|
| Date de naissance |
@if(isset($child->birthday_child) && $child->birthday_child)
{{ \Carbon\Carbon::parse($child->birthday_child)->format('d / m / Y') }}
@else
…… / …… / …………
@endif
|
Lieu de naissance |
{{ $child->city_birthday_child ?? '' }}
|
| Classe |
{{ $child->class_child ?? '' }}
|
Doncheroi ? |
@php $doncheroi = $child->doncheroi_child ?? false; @endphp
Oui
Non
|
| Sexe |
@php $sex = $child->sex_child ?? ''; @endphp
Garçon
Fille
|
PAI en cours ? |
@php $pai = $child->pai_child ?? ''; @endphp
Oui
Non
|
Documents à fournir
| Carte vitale |
Mutuelle |
| Carte d'identité |
Assurance scolaire et extra-scolaire |
| Attestation CAF |
Photocopie de l'enfant |
Informations complémentaires
| Numéro urgence |
{{ $child->emergency_phone_child ?? '' }}
|
| N° allocataire CAF |
{{ $child->beneficiary_number_caf_child ?? '' }}
|
| Quotient CAF |
{{ $child->coefficient_caf_child ?? '' }}
|
| Sait nager ? |
Oui
|
Brevet |
@php $brevet = $child->brevet_child ?? ''; @endphp
Non
25m
50m
|
| Peut repartir seul ? |
@php
$leave = $child->leave_alone_child ?? null;
$leaveYes = false;
if (is_bool($leave)) { $leaveYes = $leave; }
elseif (is_numeric($leave)) { $leaveYes = intval($leave) === 1; }
elseif (is_string($leave)) { $leaveYes = in_array(strtolower($leave), ['1','true','oui','yes']); }
@endphp
Oui
Non
|
Personnes autorisées à reprendre l'enfant |
{{ $child->allow_take_child ?? '' }}
|
Responsable légal 1
|
@php $statut1 = optional($guardian1)->status_legal_guardian ?? ''; @endphp
Père
Mère
Autre
|
| Nom |
{{ optional($guardian1)->name_legal_guardian ?? '' }}
|
Prénom |
{{ optional($guardian1)->first_name_legal_guardian ?? '' }}
|
| N° de téléphone |
{{ optional($guardian1)->phone_legal_guardian ?? '' }}
|
| Adresse |
{{ optional($guardian1)->address_legal_guardian ?? '' }}
|
| Mail |
{{ optional($guardian1)->email_legal_guardian ?? '' }}
|
Responsable légal 2
|
@php $statut2 = optional($guardian2)->status_legal_guardian_2 ?? ''; @endphp
Père
Mère
Autre
|
| Nom |
{{ optional($guardian2)->name_legal_guardian ?? '' }}
|
Prénom |
{{ optional($guardian2)->first_name_legal_guardian ?? '' }}
|
| N° de téléphone |
{{ optional($guardian2)->phone_legal_guardian ?? '' }}
|
| Adresse |
{{ optional($guardian2)->address_legal_guardian ?? '' }}
|
| Mail |
{{ optional($guardian2)->email_legal_guardian ?? '' }}
|
Santé
| Allergies ? |
Si oui, préciser le(s) allergie(s) et la conduite à tenir :
{{ $child->allergy_child ?? '' }}
|
| Traitement / PAI ? |
L'enfant suit-il un traitement ? Y a-t-il un PAI en place ?
{{ $child->treatment_child ?? '' }}
|
| Contrainte alimentaire ? |
(Régimes particuliers, sans féculent, sans viande, sans porc…)
{{ $child->food_constraint_child ?? '' }}
|
| Dossier médical |
{{ $child->medical_child ?? '' }}
|
| Observations |
{{ $child->observation_child ?? '' }}
|
Autorisations du responsable légal
Je soussigné ……………………………………………………………………………, représentant légal de l'enfant
|
Autorise
|
N'autorise pas
|
Mon enfant est autorisé à participer à toutes les activités de l'association des Francas de Donchery.
|
|
Autorise
|
N'autorise pas
|
Mon enfant est autorisé à être transporté en véhicule de service et car de location.
|
|
Autorise
|
N'autorise pas
|
J'autorise à faire soigner mon enfant et à pratiquer toute intervention d'urgence. Si une hospitalisation est nécessaire, j'autorise les représentants de l'association des Francas de Donchery à faire transporter mon enfant à l'hôpital le plus proche.
|
|
Autorise
|
N'autorise pas
|
J'autorise l'association des Francas de Donchery à utiliser les photos de mon enfant dans toutes ses publications (Facebook, blog).
|
Liste des publications non autorisées |
{{ $child->unauthorized_publications_child ?? '' }}
|
Les informations renseignées dans cette fiche sanitaire sont déclarées exactes et revues aux dates ci-dessous.
En cas de modification, une nouvelle fiche sanitaire sera refaite.
Signatures
|
Le …… / …… / …………
|
Le …… / …… / …………
|
Le …… / …… / …………
|
Le …… / …… / …………
|
Le …… / …… / …………
|