whereNotNull('bank_integration_account_id')->cursor()->each(function ($account) { // $queue = Ninja::isHosted() ? 'bank' : 'default'; if ($account->isPaid() && $account->plan == 'enterprise') { $account->bank_integrations()->where('auto_sync', true)->cursor()->each(function ($bank_integration) use ($account) { (new ProcessBankTransactions($account->bank_integration_account_id, $bank_integration))->handle(); }); } }); } } }