@extends('layouts.base') @section('menu') @include('admin.menu') @endsection @section('content')

Détails de l'alumni


Nom : {{ $user->name }}

Prenoms : {{ $user->surname }}

Telephone : {{$user->code_pays . $user->phone}}

Email : {{ $user->email }}

Date de naissance : {{\Carbon\Carbon::createFromFormat('Y-m-d', $user->birthday)->format('d-m-Y')}}

Sexe : {{$user->sexe}}

Nationnalité : {{$user->nationalite}}

Statut : {{ ucfirst($user->status) }}

Date de l'inscription : {{ (new \DateTime($user->created_at))->format('d/m/Y') }}

{{--

Année academique : 2020-2023

--}}

Filiere : {{$filiere}}

Niveau de formation : {{$niveau}}

Statut : {{$statut}}

Lieu de naissance : {{ $user->birthplace }}

Pièce jointe a l'inscription:

@if($user->attachment) @if(in_array(pathinfo($user->attachment, PATHINFO_EXTENSION), ['jpg', 'jpeg', 'png', 'gif'])) Attachment
{{-- --}} Télécharger l'image @endif @if(pathinfo($user->attachment, PATHINFO_EXTENSION) == 'pdf')
{{-- --}} Télécharger le PDF @endif @if(in_array(pathinfo($user->attachment, PATHINFO_EXTENSION), ['docx', 'xlsx', 'pptx']))

Ce fichier ne peut pas être prévisualisé.

{{-- --}} Télécharger pour voir @endif @else

Aucune pièce jointe

@endif

Diplômes et Certificats

@forelse ($user->degrees as $degree) @empty @endforelse
Nom de l'école Domaine Description Lien Media Type
{{ $degree->school_name ?? 'Non spécifié' }} {{ $degree->domain }} {{ $degree->description ?? 'Non spécifié' }} @if($degree->lien) Voir @else Non disponible @endif @if($degree->media_path) Voir Télecharger @else Non disponible @endif {{ ucfirst($degree->type) }}
Aucun diplôme ou certificat trouvé.
@endsection