Skip to content

Conversation

DarkGhostHunter
Copy link
Contributor

This PR allows to get the key of a Model when a Model instance is issued on whereKey() and whereKeyNot() methods to the Builder for relationships.

Problem & Solution

If a developer issues a Model instance to whereKey() or whereKeyNot(), these methods will make a WHERE IN clause with all the model attributes, mainly because a Model implements Arrayable.

To avoid this, these methods will check first if the $id is a Model instance, and get the key from it.

$passenger->tickets()->whereHas('airline', fn (Builder $query) => $query->whereKey($airline))->get();

@netpok
Copy link
Contributor

netpok commented Apr 30, 2021

I like this feature, but in my opinion it should support multiple keys too.

$forExample->whereKey([$model1, $model2])->get();

@taylorotwell taylorotwell merged commit 7920ca5 into laravel:8.x Apr 30, 2021
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.

3 participants