We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
If you want to use collection data in a Region Template, fetch the data like this:
<?php $newsArticles = cockpit("collections")->find("MyNewsCollection",['sort'=>['startdate'=>-1]]);
<?php
$newsArticles = cockpit("collections")->find("MyNewsCollection",['sort'=>['startdate'=>-1]]);
foreach ($newArticles as $article) {.....}