Removed unused use statements.

This commit is contained in:
James Cole
2015-03-29 08:03:53 +02:00
parent ecbafb8f4b
commit ba97f96288
5 changed files with 9 additions and 14 deletions

View File

@@ -90,7 +90,6 @@ class JsonController extends Controller
$count = $bill->transactionjournals()->before($range['end'])->after($range['start'])->count();
if ($count != 0) {
$journal = $bill->transactionjournals()->with('transactions')->before($range['end'])->after($range['start'])->first();
$paid['items'][] = $journal->description;
$currentAmount = 0;
foreach ($journal->transactions as $t) {
if (floatval($t->amount) > 0) {