@extends('layouts.base')
@section('title', 'Starter Page')
@section('css')
{{-- include page's specific styles here --}}
@endsection
@section('content')
| N° |
Photo |
Matricule |
Nom & Prénom |
Statut |
Niveau |
Filière |
| N° |
Photo |
Matricule |
Nom & Prénom |
Statut |
Niveau |
Filière |
@foreach ($data['students'] as $student)
@php
$i++;
$filiere = App\Models\Filieres::where('idFiliere', $student->idFiliere)->first();
@endphp
| {{ $i }} |
|
{{}} |
{{}} |
{{}} |
{{}} |
{{ $filiere->sigleFilieres }} |
@endforeach
@endsection
@section('script')
{{-- include page's specific scripts here --}}
@endsection