@extends('layouts.base', [ "breadcrumb" => [ // see partials/breadcrumb.blade.php for default options "title" => "ACCUEIL", "nav" => [ "Accueil Admin" => "javaScript:void(0);", "Programmer un examen" => "#", ], ] ]) @section('title', "Accueil Admin") @section('css') @endsection @section('content') {{-- alert with content --}} @include('partials.alert') {{-- alert settings with content --}} @include('partials.alert-settings') {{-- top stats --}}
Total des examens

{{ $stats[1] + $stats[2] + $stats[3] }}

Sessions normales

{{$stats[1]}}

Rattrapages

{{$stats[2]}}

Reprises

{{$stats[3]}}

{{-- Add new exam form --}}

PROGRAMMER UN EXAMEN

@csrf {{-- Course fieldset --}}
Matière
{{-- Exam fieldset --}}
Examen
@endsection @section('script') @endsection