{{-- ═════════════ Module grid (3 columns) ═════════════ --}}
|
@php $modCount = $modules->count(); @endphp
@foreach($modules as $m)
|
|
@endforeach
@for($fill = $modCount; $fill < 3; $fill++)
|
@endfor
|
{{-- ═════════════ Calendar ═════════════ --}}
@foreach(\App\Services\CalendarService::WEEKDAY_LABELS as $wd)
| {{ $wd }} |
@endforeach
@foreach($calendar['weeks'] as $wi => $week)
@foreach($week as $d)
|
@if($d['other_month'] && !$d['has_link'])
{{ $d['day'] }}
@elseif(!$d['has_link'])
{{ $d['day'] }}
@else
{{ $d['day'] }}
@endif
|
@endforeach
@endforeach
Retour a aujourd'hui
|
{{-- ═════════════ Settings panel ═════════════ --}}
| Session |
Utilisateur : {{ auth()->user()->Login }} ({{ auth()->user()->Auth }})
Date : {{ now()->format('Y-m-d') }}
|
|