resources/views/default/components/sorting_control.php
<small style="white-space: nowrap">
<a
title="Sort ascending"
<?php if($column->isSortedAsc()): ?>
class="text-success"
<?php else: ?>
href="<?= $grid->getSorter()->link($column, 'ASC') ?>"
<?php endif ?>
>
▲
</a>
<a
title="Sort descending"
<?php if($column->isSortedDesc()): ?>
class="text-success"
<?php else: ?>
href="<?= $grid->getSorter()->link($column, 'DESC') ?>"
<?php endif ?>
>
▼
</a>
</small>