@extends('app') @section('title', 'Evaluation par matière') @section('link') @endsection @section('content')
@include('includes._alert')
@csrf

{{ucfirst($cutting->cutting->libelle)}} - Non Classés

{{$classe['libelle']}} - {{$nombre <= 9 ? '0'.$nombre:$nombre}}/{{count($datas) <= 9 ? '0'.count($datas):count($datas)}}

@php $i = 1; @endphp @foreach ($datas as $item) @endforeach
Matricule Nom Prénoms Sexe Statut
Photo Stuedent @php $i++ @endphp {{ $item['matricule'] }} {{ Str::limit($item['first_name'], 30, '...') }} {{ Str::limit($item['last_name'], 30, '...') }} {{ $item['sexe'] == 'F' ? 'Feminin':'Masculi' }}
@endsection @section('script') @endsection