@extends('layouts.base', [ "breadcrumb" => [ // see partials/breadcrumb.blade.php for default options "title" => "VISUALISER LA LISTE DES INSCRIPTIONS PAR UE", // "showNav" => true, "nav" => [ "Dashboard" => route("home"), "Liste des inscriptions par ue" => "", ], "btnText" => "GestStudent v17.04", ] ]) @section('title', "VISUALISER LA LISTE DES INSCRIPTIONS PAR UE | GestStudent Admin") @section('css') @endsection @section('content') @if(session()->has('error')) @endif
@php $i = 1; $niveaux = ['1' => 'Licence', '2' => 'Master', '3' => 'Doctorat']; $annees = ['1' => 'Première année', '2' => 'Deuxième année', '3' => 'Troisième année']; $results = ['A' => 'Validée', 'R' => 'Non validée']; @endphp @foreach ($data as $d) @php $i++; @endphp @endforeach
Matricule Nom & Prénom Niveau Annee Filière P_I I_A Code unite Résultat Opération
{{$d->matricule}} {{$d->nom .' '. $d->prenom}} {{$niveaux[$d->niveauFormation]}} {{$d->annee}} {{$d->sigleFilieres}} {{$d->premiere_inscription}} {{$d->inscription_actuelle}} {{$d->code_unite}} {{($d->resultat == 'A') ? 'Validée' : 'Non validée'}}
Matricule Nom & Prénom Niveau Annee Filière P_I I_A Code unite Résultat Opération
@endsection @section('script') @endsection