Minor display fixes, link to old site

This commit is contained in:
Deon George
2018-07-16 15:06:43 +10:00
parent 64b6c09b8f
commit 1821810570
21 changed files with 375 additions and 203 deletions

View File

@@ -97,7 +97,7 @@ class User extends Authenticatable
return $this->invoices
->where('active',TRUE)
->sortBy('id')
->transform(function ($item) { if ($item->due) return $item; })
->transform(function ($item) { if ($item->due > 0) return $item; })
->reverse()
->filter();
}