This commit is contained in:
James Cole
2025-02-19 06:21:27 +01:00
parent 7c85138115
commit 13fc7f0d8d
2 changed files with 4 additions and 0 deletions

View File

@@ -361,6 +361,8 @@ class AccountRepository implements AccountRepositoryInterface
}
$query->orderBy('accounts.order', 'ASC');
$query->orderBy('accounts.name', 'ASC');
$query->orderBy('accounts.account_type_id', 'ASC');
$query->orderBy('accounts.id', 'ASC');
}
return $query->get(['accounts.*']);