Hello, I'm trying to follow this "new" pattern, but I stopped in a question. In DDD, we use a command/command handler to update an entity? I guess in Larabook's serie Jeff's using commander only in register/post methods.
For example, when I'm updating one job, the update method calls a UpdateJobCommand/Command Handler and receive an entity?
Because when I'm creating I could diagram like this:
Simplifying there's something that I need to do in my Eloquent's class? Similar to "return new static(compact('name', 'icon'));" on add's method? Or can I handle the update just using my Repo?