According to what I understood from the Laravel documentation, subscribers are actually a way to group listeners related to a model. That is, instead of having several listener classes, we create a subscriber class instead, and each of the listeners becomes a method in this class.
Did I get it right? Does each one have advantages or disadvantages over the other?