@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)
@foreach ($item['data'] as $student) @endforeach
Matricule Nom & Prenoms Sexe Total absence Justifiées Non justifiées Actions
Photo Stuedent {{$student['matricule']}} {{ Str::limit($student['name'], '27', '...') }} {{ucfirst($student['sexe'] == 'F' ? 'Féminin':'Masculin')}} {{$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