@php $breadcrumb = [ // see partials/breadcrumb.blade.php for default options "show" => true, // show breadcrumb "showNav" => true, "title" => "GESTSTUDENT NOUVELLE GÉNÉRATION", "nav" => [ "ACCUEIL" => "javaScript:void(0);", "NOTE DE LA COMPOSITION" => "javaScript:void(0);", ], "showBtn" => false, "btnText" => "GestStudent v22.xx", "btnClass" => "btn btn-danger text-white ms-3 d-none d-md-block", ]; $breadcrumb['isTitleOnly'] = !($breadcrumb['showNav'] || $breadcrumb['showBtn']); @endphp @if ($breadcrumb["show"]) @endif
{{-- alert with content --}} @include('partials.alert') @if (isset($exam))

Note de composition

Composition du {{ $exam['formated_dateexam'] }} à {{ $exam['heure'] }}
    @php $note = $exam["note"]; if (isset($notes) && count($notes)) { if ($exam['type_ue'] == 1 || $exam['type_ue'] == 2) { $noteValide = $notes['note']; // Note requise par ue spécialité/méthodologie } else { $noteValide = $notes['note2']; // Note requise par ue Culture Générale/Connaissances Fondamentales } } else { $noteValide = ($exam["echelle"] <= 20) ? 12 : 60; } if (($noteValide >= 50) && ($exam["echelle"] <= 20) ) { $note = $exam["note"] * 5; // Note requise par ue spécialité/méthodologie } //Note de l'étudiant $note = floatval (str_pad($note, 2, "0", STR_PAD_LEFT)); @endphp
  • {{--
    --}}

    {{ $exam['intituleEcu'] }}

    Description :

    {{ $exam['description'] }}

    @switch($exam['resultat']) @case("TRICHERIE")

    Motif :

    @break @case("") @if ($exam['termine'] == "N")

    Motif :

    @endif @break @default @endswitch

    Note de la composition :

@endif