', 0) ->where(function ($query) { $query->where('last_online_at', '<', now()->subMinutes(10)) ->orWhereNull('last_online_at'); }) ->update(['online_count' => 0]); if ($affected > 0) { $this->info("Reset online_count for {$affected} stale users."); } } }