@includeIf($beforeCalendarView)
@foreach($monthGrid->first() as $day) @include($dayOfWeekView, ['day' => $day]) @endforeach
@foreach($monthGrid as $week)
@foreach($week as $day) @include($dayView, [ 'componentId' => $componentId, 'day' => $day, 'dayInMonth' => $day->isSameMonth($startsAt), 'isToday' => $day->isToday(), 'events' => $getEventsForDay($day, $events), ]) @endforeach
@endforeach
@includeIf($afterCalendarView)