Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pivot model observers not working properly when using withPivotValue #55247

Open
wants to merge 2 commits into
base: 12.x
Choose a base branch
from

Conversation

Amirhf1
Copy link
Contributor

@Amirhf1 Amirhf1 commented Apr 1, 2025

This PR fixes issue #55026 where pivot model observers don't work properly when using the withPivotValue method.

Description

When using a custom pivot model class with observers and calling withPivotValue on a relationship, the update and delete events don't fire as expected. This happens because withPivotValue adds conditions to pivotWheres, which prevents the code from using the custom pivot class path for updates and detaches.

Solution

  • Modified withPivotValue to mark where clauses that come from it with a from_pivot_value flag
  • Added a getNonPivotValueWhereClauses method to filter out where clauses that come from withPivotValue
  • Updated updateExistingPivot and detach methods to check for non-pivot-value where clauses instead of all where clauses
  • Modified newPivotQuery to properly apply where clauses but remove the flag before building the query
  • Added a test case to verify the fix works correctly

The solution ensures that pivot model observers work properly with withPivotValue while maintaining the filtering behavior required by the relation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant