@extends('app') @section('title', 'Add note') @section('link') @endsection @section('content')
@include('includes._alert')
@csrf

{{ $catching ? 'Rattrapage ':null }}Note - {{ucfirst($evaluation->levelMatter->matter->abbreviated ?? $evaluation->levelMatter->matter->libelle)}} {{$evaluation->sub_matter_id ? ' ['.$evaluation->subMatter->abbreviated.']':''}}

{{ucfirst($evaluation->evaluationType->type)}} du {{date('d/m/Y', strtotime($evaluation['date_create']))}} @if (!$catching) @endif

@php $i = 1; @endphp @foreach ($students as $student) @endforeach
Matricule Nom Prénoms Genre Note
Photo Stuedent {{ $student->matricule }} {{ strtoupper($student->first_name) }} {{ Str::limit(ucwords($student->last_name), '17', '...') }} {{ ucfirst($student->sexe == 'F' ? 'Féminin':'Masculin') }} / {{$evaluation['notee'] * 20}}
@endsection @section('script') @endsection