@extends('app') @section('title','inscriptions') @section('link') @endsection @section('content')
@include('includes._alert')

Inscription - {{count($inscris) <= 9 ? '0'.count($inscris):count($inscris)}}


@foreach ($statistics as $statistic)
{{ucwords($statistic['libelle'])}} {{$statistic['inscris']}}
M : {{$statistic['nbreM']}} --- F : {{$statistic['nbreF']}}
@endforeach

@php $i = 1; @endphp @foreach ($inscris as $item) @endforeach
Matricule Nom Prénoms Genre Classe Date inscrit Actions
{{$i <= 9 ? '0'.$i++:$i++}} {{$item->student->matricule}} {{ucwords($item->student->first_name)}} {{ucwords($item->student->last_name)}} {{$item->student->sexe == 'F' ? 'Feminin':'masculin'}} {{$item->classe->libelle}} {{date('d-m-Y', strtotime($item->created_at))}} à {{date('H:i', strtotime($item->created_at))}}
{{-- --}}
@endsection @section('script') @endsection