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