Fixed sort commands [skip ci]

This commit is contained in:
James Cole
2015-06-17 06:11:35 +02:00
parent 1bb0508ddf
commit 92d8dde90d
8 changed files with 11 additions and 13 deletions

View File

@@ -68,7 +68,7 @@ class AccountRepository implements AccountRepositoryInterface
['accountmeta' => function (HasMany $query) {
$query->where('name', 'accountRole');
}]
)->accountTypeIn($types)->orderBy('accounts.name', 'ASC')->get(['accounts.*'])->sortBy('name');
)->accountTypeIn($types)->orderBy('accounts.name', 'ASC')->get(['accounts.*']);
return $result;
}

View File

@@ -91,7 +91,7 @@ class BillRepository implements BillRepositoryInterface
public function getBills()
{
/** @var Collection $set */
$set = Auth::user()->bills()->orderBy('name', 'ASC')->get()->sortBy('name');
$set = Auth::user()->bills()->orderBy('name', 'ASC')->get();
return $set;
}

View File

@@ -63,7 +63,6 @@ class BudgetRepository extends ComponentRepository implements BudgetRepositoryIn
public function getActiveBudgets()
{
$budgets = Auth::user()->budgets()->where('active', 1)->get();
$budgets->sortBy('name');
return $budgets;
}