@extends('layouts.base', [ "breadcrumb" => [ // see partials/breadcrumb.blade.php for default options "title" => "COPIES", "nav" => [ "Accueil" => route("teacher.index"), "Copies" => "#", ], ] ]) @section('title', "GestStudent NG Copies") @section('css') @endsection @section('content') {{-- alert with content --}} @include('partials.alert') {{-- alert settings with content --}} @include('partials.alert-settings') {{-- top stats --}}

Nombre de Cours

{{$stats["ec"]}}

Nombre de filière

{{$stats["filiere"]}}

Total des épreuves

{{$stats["epreuve"]}}

Total des questions

{{$stats["question"]}}

LISTES DES ÉTUDIANTS ET LEURS NOTES

{{$ec->intituleEcu}} {{"($ec->sigleFilieres | $ec->niveauformation $ec->annee)"}}
Devoir surveillé du {{$exam->formated_date." à ".$exam->heure}}

Modèle d'affichage

Choisissez un modèle d'affichage
@foreach ($copies as $i => $copy) @php $showLink = route('teacher.ec_epreuve_copies_show', [ "ecId" => $ec->idEC, "epreuveId" => $exam->idepreuve, "copyId" => $copy->idcomposition_etu ]); @endphp @endforeach
Nom et prénoms de l'étudiant Note Action
{{$i+1}} {{$copy->nom." ".$copy->prenom}} {{$copy->note}} @if ( $exam->modifierNote == "O" ) @endif {{-- edit note modal --}} {{-- edit status modal --}}

GÉNÉRATION DES COPIES AU FORMAT PDF

Examen du {{ $exam->formated_date}}

0/0

Génération de la copie de :

Loading...
@endsection @section('script') @endsection