@extends('layouts.admin')
@section('title')
{{ config('app.name', 'SMS') }} | Gestion des Préinscriptions
@endsection
@section('header')
@endsection
@section('content')
N° |
Nom & Prénom |
Date Naiss. |
Lieu Naiss. |
Contact |
Email |
Filière |
|
@forelse($preinscriptions as $key => $value)
{{ $key+1 }} |
{{ $value->nom }} {{ $value->prenom }} |
{{ $value->date_naiss }} |
{{ $value->lieu_naiss }} |
{{ $value->phone1 }} |
{{ $value->email }} |
{{ $value->filiere->libelle }} |
|
@empty
Aucune donnée trouvée !
|
@endforelse
@endsection
@section('footer')
@endsection