@extends('layouts.main') @section('content')
@include('modules.etudiants.menu')
{{--
--}}

Nom de la mère : {{ $et->et_nom_mere}}

Né(e) le, {{ date('d-m-Y', strtotime($et->et_datenaissance))}}

Né(e) à, {{ $et->et_lieunaissance }}

Situation : {{ $et->et_situation_pro}}

Profession : {{ $et->et_situation_pro_travail}}

Portable : {{ $et->et_portable}}

Email : {{ $et->et_email}}

Personne de contact : {{ $et->et_personne_contact}} ( {{ $et->et_tel_contact1}})


Formation actuel : {{ $et->cl_type}} {{ $et->cl_cycle}} {{ $et->cl_nom}}

Inscrit depuis le, {{ date('d-m-Y h:i:s', strtotime($et->et_date_inscription))}}

Modifier @if( $et->et_statut == 'ACTIF') Abondant @elseif( $et->et_statut == 'ABONDANT') Ré-Activer @endif
Liste des formations inscrits @foreach ($inscriptions as $insc ) @endforeach
ID Niveau Formation Classe / Formation Date d'inscription
{{ $insc->insc_id }} {{ $insc->cl_niveau }} {{ $insc->cl_cycle }} {{ $insc->cl_nom }} {{ $insc->insc_date }}

{{count($inscriptions)}} Inscription(s)

Factures @php $pmontant=0; @endphp @foreach ($paiements as $p ) @php $pmontant=$pmontant + $p->p_montant; @endphp @endforeach
Formation Réf. Période Moyen de paiement Date Montant
{{ $p->cl_niveau }} {{ $p->cl_cycle }} {{ $p->cl_nom }} {{ $p->p_ref }} {{ $p->periode_libelle }} {{ $p->p_moyen }} {{ $p->p_numcheque }}{{ $p->p_datecheque }}{{ $p->p_bankcheque }} {{ $p->p_datecrea }} {{ $p->p_montant }} FDJ
TOTAL Payé {{ $pmontant }} FDJ

{{count($paiements)}} Paiment(s)

@foreach ($inscriptions as $insc ) @endforeach
ID Niveau Formation Niveau Date d'inscription
{{ $insc->insc_id }} {{ $insc->cl_niveau }} {{ $insc->cl_cycle }} {{ $insc->cl_nom }} {{ $insc->insc_date }}

{{count($inscriptions)}} Inscriptions

@endsection