Hi, I have a User model and within that an embedded phone model. I want to be able to update both the user model and the embedded phone model at the same time to maintain data integrity however the only way I have found to acheive this is to first update the parent, then update the embedded document via the $user->phone() selector? Is there a way I can combine this into one update statement?
Thanks