@extends('layouts.admin') @section('title') {{ config('app.name', 'SMS') }} | Enregistrer les notes @endsection @section('header') @endsection @section('content')

Enregistrer les notes

@csrf
@if ($eleveSelection==true)
Année: {{$classe->option->filiere->annee->nom_params}}
Departement: {{$classe->option->filiere->departement->libelle}}
Filière: {{$classe->option->filiere->libelle}}
Option: {{$classe->option->libelle}}
Classe: {{$classe->libelle}}
@else @endif
@if ($eleveSelection==true)
@csrf
@forelse($etudiants as $key => $value) @empty @endforelse
Nom(s) et Prénom(s) Note
{{ $key+1 }} {{ $value->nom }} {{ $value->prenom }}
Aucun étudiant trouvé !
@endif
@endsection @section('footer') @endsection