@extends('app') @section('title', 'Gestion des appels') @section('link') @endsection @section('content')
@include('includes._alert')

Appels du {{date('d-m-Y', strtotime($today))}}

{{$class['libelle']}} - {{'semaine '.($weeks <= 9 ? '0'.$weeks:$weeks)}}
@php $t=1 @endphp @foreach ($datas as $item) @endforeach
Nom et prenoms Genre Matricule {{$period == 1 ? 'Matin':'Après midi'}}
{{$t <= 9 ? '0'.$t++:$t++}}
{{strtoupper($item['first_name']).' '.ucwords($item['last_name'])}}
{{ucfirst($item['sexe'] == 'F' ? 'Féminin':'Masculin')}}
{{$item['matricule']}}
@endsection @section('script') @endsection