Fix issue with budgets.

This commit is contained in:
James Cole
2020-03-31 07:03:37 +02:00
parent 2c0d8b9cb3
commit 144bc29eb3
3 changed files with 21 additions and 9 deletions

View File

@@ -189,7 +189,7 @@ class BudgetRepository implements BudgetRepositoryInterface
{
/** @var Collection $set */
$set = $this->user->budgets()->where('active', 1)
->orderBy('order', 'ASC')
->orderBy('order', 'DESC')
->orderBy('name', 'ASC')
->get();