@extends('layouts.base', [ "breadcrumb" => [ // see partials/breadcrumb.blade.php for default options "title" => "VISUALISER LA LISTE DES BACHELIERS", // "showNav" => true, "nav" => [ "Dashboard" => route("home"), "Liste des bacheliers" => "", ], "btnText" => "GestStudent v17.04", ] ]) @section('title', "Liste des bacheliers | GestStudent Admin") @section('css') @endsection @section('content') @if(session()->has('error')) @endif
{{-- --}} @php $i = 1; @endphp @foreach ($users as $user) {{-- --}} @php $i++; @endphp @endforeach
Numéro de table Nom & Prénom Niveau Filière Période StatutActions
{{$user->numeroBac}} {{$infosBAC[$user->numeroBac]->first()->nom . ' ' . $infosBAC[$user->numeroBac]->first()->prenom}} @if($user->niveauFormation == 1) {{'L1'}} @elseif($user->niveauFormation == 2) {{'M1'}} @else {{'D1'}} @endif {{$user->sigleFilieres}} {{$user->anDiplom}} {{$statuts[$user->idStatut]}} --}} {{-- --}} {{-- --}} {{--
@endsection @section('script') @endsection