fix:order by asc on date

This commit is contained in:
hackerESQ
2024-09-27 10:56:11 -05:00
parent 367fd7802b
commit 9e173ecc35
@@ -51,7 +51,8 @@ new class extends Component {
SUM(total_dividends_earned) as total_dividends_earned
*/
')
->groupBy('date');
->groupBy('date')
->orderBy('date');
}