@extends('app') @section('title', 'Appel') @section('link') @endsection @section('content')
@include('partials._alert')
Detail Appel - {{ $student->group }}

{{ strtoupper($student->student->first_name).' '.Str::limit(ucwords($student->student->last_name), '15', '...') }}

@php $i = 0; @endphp @foreach ($datas as $item) @endforeach
Date Absentée Matin Après Midi
{{ $i <= 9 ? '0'.++$i : ++$i }} {{ date('d/m/Y', strtotime($item['created'])) }} {{ $item['matin'] <= 9 ? '0'.$item['matin'] : $item['matin'] }} {{ $item['soir'] <= 9 ? '0'.$item['soir'] : $item['soir'] }}
@endsection @section('script') @endsection