Removed commented out code.

This commit is contained in:
James Cole
2015-03-29 07:59:18 +02:00
parent 12d3800d67
commit ecbafb8f4b
8 changed files with 0 additions and 33 deletions

View File

@@ -97,7 +97,6 @@ class PiggyBankRepository implements PiggyBankRepositoryInterface
->leftJoin('accounts', 'accounts.id', '=', 'piggy_banks.id')
->where('accounts.user_id', Auth::user()->id)
->update(['order' => 0, 'piggy_banks.updated_at' => DB::Raw('NOW()')]);
//Auth::user()->piggyBanks()->update(['order' => 0]);
}
/**