@props([ 'routeName', 'calendarMonth', 'queryParams' => [], ]) @php $calendarMonth = $calendarMonth instanceof \App\Support\CalendarMonth ? $calendarMonth : \App\Support\CalendarMonth::fromRequest(request()); $prevMonth = $calendarMonth->date->copy()->subMonth(); $nextMonth = $calendarMonth->date->copy()->addMonth(); $prevQuery = (new \App\Support\CalendarMonth($prevMonth))->queryForMonth($queryParams); $nextQuery = (new \App\Support\CalendarMonth($nextMonth))->queryForMonth($queryParams); @endphp