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

{{ucwords($evaluated->evaluated->libelle ?? null)}}

{{$classe->libelle}}

@foreach ($matters as $matter) @endforeach @foreach ($datas as $item) @foreach ($item['notes'] as $note) @endforeach @endforeach
Nom & Prénoms Sexe{{$matter->primary_matter->abbreviated}}Point Moyen Rang
Photo Stuedent {{ Str::limit($item['name'], '20', '...') }} {{$item['sexe']}}{{ $note['note'] ? ($note['note']['note'] == 'nc' ? 'nc':$note['note']['note'].' / '.$note['valeur']):'--' }}{{ $item['resultat'] ? ($item['resultat']['point'] == 'nc' ? 'nc':$item['resultat']['point'].' / '.calculTotatPoint($item['notes'])):'--' }} {{ $item['resultat'] ? ($item['resultat']['moyenne'] == 'nc' ? 'nc':$item['resultat']['moyenne'].' / 10'):'--' }} {{ $item['resultat'] ? ($item['resultat']['rang'] ?? 'nc'):'--' }}
@endsection @section('script') @endsection