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

Détail des Appels

{{$class['libelle']}} - {{ucfirst($matter->matter->abbreviated ?? $matter->matter->libelle)}}
@foreach ($datas as $item)
@php $i = 1; @endphp @foreach ($item['data'] as $student) @endforeach
Nom & Prenoms Sexe Matricule Total absence Justifiées Non justifiées Actions
{{$i <= 9 ? '0'.$i++:$i++}} {{$student['name']}}
{{ucfirst($student['sexe'] == 'F' ? 'Féminin':'Masculin')}}
{{$student['matricule']}} {{$student['nbre_abs'] <= 9 ? '0'.$student['nbre_abs']:$student['nbre_abs']}}H {{$student['nbre_abs_justif'] <= 9 ? '0'.$student['nbre_abs_justif']:$student['nbre_abs_justif']}}H {{$student['nbre_abs_injustif'] <= 9 ? '0'.$student['nbre_abs_injustif']:$student['nbre_abs_injustif']}}H
{{-- --}} {{-- --}}
@endforeach
@endsection @section('script') @endsection