I have simple many-to-many relation.
articles
tags
articlestags
I have smth like this
<?php foreach ($tag->articles as $article) :?>
<?= $article->title ?>
<?php endforeach;?>
What I need is to make it order by column article.release_date DESC