whereAirDateNotNull(); $events = Map::from($monitors)->map(function ($monitor) { return new Event($monitor->getTitle()) ->startsAt($monitor->getAirDate()) ->withoutTimezone() ->fullDay() ; }); $calendar->event($events->toArray()); return new Response($calendar->get(), 200, [ 'Content-Type' => 'text/calendar', 'Content-Disposition' => 'attachment; filename="upcoming-episodes.ics"', ]); } }