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

Liste notes - {{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 (count($students) > 0) @if (!$approved) @endif @else @endif

@php $i = 1; @endphp @foreach ($students as $student) @endforeach
Matricule Nom Prénoms Genre Note
Photo Stuedent @php $i++; @endphp {{$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