This commit is contained in:
James Cole
2015-03-31 20:52:48 +02:00
parent 216a223617
commit cf23858c10
2 changed files with 8 additions and 1 deletions

View File

@@ -323,7 +323,7 @@ class ReportQuery implements ReportQueryInterface
->groupBy('categories.id')
->orderBy('amount');
return $query->get(['categories.id', 'categories.name', DB::Raw('SUM(`transactions`.`amount`) AS `amount`')]);
return $query->get(['categories.id','categories.encrypted', 'categories.name', DB::Raw('SUM(`transactions`.`amount`) AS `amount`')]);
}