1 should be 0

This commit is contained in:
James Cole 2015-04-19 19:10:53 +02:00
parent 412d6d4fd7
commit 875cbf66af

View File

@ -148,7 +148,7 @@ class BudgetRepository implements BudgetRepositoryInterface
*/ */
public function getInactiveBudgets() public function getInactiveBudgets()
{ {
return Auth::user()->budgets()->where('active', 1)->get(); return Auth::user()->budgets()->where('active', 0)->get();
} }
/** /**