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