@extends('app') @section('title', 'detail payemnt') @section('link') @endsection @section('content')
@include('partials._alert')
Detail Payements
{{ $data->student->matricule }}
image student
{{ 'Groupe : '.$data->group ?? '---' }}

{{ 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' }}
Niveau d'étude
{{ ucwords($data->level->code) }} - {{ ucwords($data->originSchool->libelle) }}
Parent
{{ ($data->student->studentParent->civility == 'm' ? 'M. ':'Mme. ').strtoupper($data->student->studentParent->first_name) .' '. ucwords($data->student->studentParent->last_name) }}
Téléphone
{{ $data->student->studentParent->phon1 }} {{$data->student->studentParent->phon ? ' - '.$data->student->studentParent->phon2:null}}

Liste Paie

@if (count($dts)) @endif
@php $i = 1 @endphp @forelse ($dts as $param) @empty @endforelse
{{ $i <= 9 ? '0'.$i++:$i++ }}
{{ ucwords($param->parametre->libelle) }}
{{ $param['number'].' mois' }}
Debut
{{ $param['section_id'] ? $param->section->debut:date('d-m-Y', strtotime($param->debut)) }}
Fin
{{ $param['section_id'] ? $param->section->fin:date('d-m-Y', strtotime($param->fin)) }}
Status
{{ getStatus($param->status)[1] }}
Aucune donnée trouvée
@endsection @section('script') @endsection