@extends('app')
@section('title', 'detail student')
@section('link')
@endsection
@section('content')
@include('partials._alert')
{{ $data->student->matricule }}
|
{{ strtoupper($data->student->first_name) .' '. ucwords($data->student->last_name) }}
|
Date et lieu de naissance
{{ $data->student->date_birth ? date('d/m/Y', strtotime($data->student->date_birth)).' '.($data->student->birth ? 'à '.ucwords($data->student->birth):'A definir'):'A definir' }}
|
Genre
{{ $data->student->sexe == 'F' ? 'Feminin':'Masculin' }}
|
Notionalité
{{ ucwords($data->student->nationalitie->libelle) }}
|
Résidence
{{ ucwords($data->student->residence) ?? 'A definir' }}
|
Etablissement
{{ ucwords($data->originSchool->libelle) }}
|
Niveau d'étude
{{ ucwords($data->level->code) }} - {{ $data->classe }}
|
Parent
{{ ucwords($data->student->studentParent->civility) }}. {{ strtoupper($data->student->studentParent->first_name).' '.ucwords($data->student->studentParent->last_name) }}
|
Téléphone
{{ $data->student->studentParent->phon1 }} {{ $data->student->studentParent->phon2 ? ' / '.$data->student->studentParent->phon2:null }}
|
|
@endsection
@section('script')
@endsection