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

Liste d'évaluation {{$class->libelle}}

{{ucfirst($matter->matter['abbreviated'] ?? $matter->matter['libelle'])}}[{{$teacher ? ($teacher->user->sexe == "F" ? 'Mde. ':'Mr. ').strtoupper($teacher->user->first_name).' '.ucwords($teacher->user->last_name):'Non défini'}}]
@foreach ($cutting as $item)
@php $i = 1; @endphp @foreach ($item['data'] as $val) @endforeach
Libelle Date Noté sur Status Actions
{{$i <= 9 ? '0'.$i++:$i++}} {{ucfirst($val->evaluationType->type)}} {{ $val->sub_matter_id ? ' ['.$val->subMatter->abbreviated.']':null}} {{date('d/m/Y', strtotime($val['date_create']))}} {{$val['notee'] * 20}} {{$val['status'] ? 'Actif':'Inactif'}}
@endforeach
@endsection @section('script') @endsection