Hello! I have model "transactions" and related models "operations". One transactions have many operations. Now I use afterSave hook to update user balance (add operations sum to cache), but afterSave hook run on "transaction model" save. I need afterSave run after all "operations" save.
How can I do that?