EFFECTIF AVEC L'APPROCHE PAR NIVEAU ET PAR GENRE

@if ($cycle1)
I - Premier Cycle
@livewire('chapter2.cycle1', ['cutting' => $cutting->id, 'school' => auth()->user()->school_id])
@endif @if ($cycle2)
II - Second Cycle
@livewire('chapter2.cycle2', ['cutting' => $cutting->id, 'school' => auth()->user()->school_id])
III - Effectif Total
@livewire('chapter2.effectif', ['cutting' => $cutting->id, 'school' => auth()->user()->school_id])
@endif

PYRAMIDES (REPARTITION DES ELEVES PAR ANNEE DE NAISSANCE)

@if ($cycle1)
I - Premier Cycle
@livewire('chapter2.pyramide_cycle_1', ['cutting' => $cutting->id, 'school' => auth()->user()->school_id])
@endif @if ($cycle2)
II - Second Cycle
@livewire('chapter2.pyramide_cycle_2', ['cutting' => $cutting->id, 'school' => auth()->user()->school_id])
@endif

LISTE DES BOURSIERS ET DEMI BOURSIERS

@livewire('chapter2.boursier', ['cutting' => $cutting->id, 'school' => auth()->user()->school_id])