diff --git a/app/Services/ChurchToolsService.php b/app/Services/ChurchToolsService.php index ddd94d9..0a8fd7f 100644 --- a/app/Services/ChurchToolsService.php +++ b/app/Services/ChurchToolsService.php @@ -156,7 +156,9 @@ private function fetchEvents(): array $fetcher = $this->eventFetcher ?? function (): array { $this->configureApi(); - return EventRequest::where('from', Carbon::now()->toDateString())->get(); + return EventRequest::where('from', Carbon::now()->toDateString()) + ->where('to', Carbon::now()->addMonths(3)->toDateString()) + ->get(); }; return $this->logApiCall('fetchEvents', 'events', fn (): array => $fetcher());