@if ($currentMonth === 1) {{ trans('January') }} @endif @if ($currentMonth === 2) {{ trans('February') }} @endif @if ($currentMonth === 3) {{ trans('March') }} @endif @if ($currentMonth === 4) {{ trans('April') }} @endif @if ($currentMonth === 5) {{ trans('May') }} @endif @if ($currentMonth === 6) {{ trans('June') }} @endif @if ($currentMonth === 7) {{ trans('July') }} @endif @if ($currentMonth === 8) {{ trans('August') }} @endif @if ($currentMonth === 9) {{ trans('September') }} @endif @if ($currentMonth === 10) {{ trans('October') }} @endif @if ($currentMonth === 11) {{ trans('November') }} @endif @if ($currentMonth === 12) {{ trans('December') }} @endif {{ $currentYear }}
Gérer
L
M
M
J
V
S
D
@foreach ($calendar as $days)
@foreach ($days as $day) @if (!is_null($day))
{{ $day['day'] ?? '' }}
@else
@endif @endforeach
@endforeach