@extends('layouts.base', [ 'breadcrumb' => [ // see partials/breadcrumb.blade.php for default options 'title' => "ÉTABLIR LE PARCOURT D'UN ÉTUDIANT", // "showNav" => true, 'nav' => [ 'Dashboard' => route('home'), "Parcourt de l'étudiant" => '', ], 'btnText' => 'GestStudent v17.04', ], ]) @section('title', $data['infosEtudiant']->first()->nom.' '.$data['infosEtudiant']->first()->prenom.' | GestStudent Admin') @section('css') @endsection @section('content')

Data export

Export data to Excel, PDF & Print

@foreach ($data['infosEtudiant'] as $studentAtAYear) @endforeach
Photo Matricule Nom & Prénom Niveau Filière Période Statut UE restant % Crédit Moy pondérée
@csrf photo: {{$studentAtAYear->cheminPhoto}}
@csrf {{$studentAtAYear->matricule}}
@csrf {{$studentAtAYear->nom}} {{$studentAtAYear->prenom}}
@csrf {{$studentAtAYear->niveauFormation}} {{$studentAtAYear->annee}}
@csrf {{$studentAtAYear->intituleFilieres}}
@csrf {{$studentAtAYear->annee_acad - 1}} - {{$studentAtAYear->annee_acad}}
@csrf Réduction
@csrf 0
@csrf {{$studentAtAYear->pourcentageCredit}}
@csrf {{$studentAtAYear->moyennePonderee}}
Photo Matricule Nom & Prénom Niveau Filière Période Statut UE restant % Crédit Moy pondérée
@endsection @section('script') @endsection