Hi there,
I can show upcoming events, but would also like to include today’s events.
My event has a blueprint with date (type: date).
In PHP I fetch the events like this:
$items = $site->find('agenda')->children()->listed()->filter(function ($child) {
return $child->date()->toDate() > time();
})->sortBy('date', 'asc');
I tried already with “>=” but didn’t work.
Any tips?