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

@@ -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;
}