{{-- FLOATING ACTIONS --}}
{{-- HEADER --}}
{{-- YEAR --}}
{{-- ACTIONS --}}
{{-- LEGEND --}}
{{ __('views.calendar.selected_future') }}
{{ __('views.calendar.selected_past') }}
{{ __('views.calendar.not_available') }}
{{ __('views.calendar.today') }}
{{-- CALENDAR --}}
@foreach($months as $month)
{{ $month['name'] }}
{{-- WEEKDAYS --}}
{{ $this->getWeekdayName(1, true) }}
{{ $this->getWeekdayName(2, true) }}
{{ $this->getWeekdayName(3, true) }}
{{ $this->getWeekdayName(4, true) }}
{{ $this->getWeekdayName(5, true) }}
{{ $this->getWeekdayName(6, true) }}
{{ $this->getWeekdayName(0, true) }}
{{-- DAYS --}}
@php $firstDayOfWeek = $month['first_day_of_week']; $adjustedFirstDay = $firstDayOfWeek == 0 ? 7 : $firstDayOfWeek; $emptyCells = $adjustedFirstDay - 1; @endphp {{-- EMPTY --}} @for($i = 0; $i < $emptyCells; $i++)
@endfor {{-- DAYS --}} @foreach($month['days'] as $day)
@endforeach
@endforeach
{{-- ALPINE --}}