Hi there
It’s me again with my Events page. So I have that section titled “Past Events”. They’re sorted and grouped by year. My oh so little oh so annoying problem is that I can’t sort the years numerically! (They are just sorted the way they were added in the content file.)
Here’s the code of the template:
<?php
$events = page('events')->events()->toStructure()->filter(function($child) {
return $child->date(null, 'enddate') < time();
});
$years = $events->groupBy('year');
foreach($years as $year => $eventsPerYear): ?>
<h1><?= $year ?></h1>
<?php
$sortedEvents = $eventsPerYear->sortBy('startdate', 'desc');
foreach($sortedEvents as $event) : ?>
<div class="event">
…
</div>
<?php endforeach; ?>
<?php endforeach ?>
Thank you in advance for your help!
Cheers,
Daniel