Where condition in Laravel Relationship Example
https://www.itsolutionstuff.com/post/where-condition-in-laravel-relationship-exampleexample.html
Last updated
https://www.itsolutionstuff.com/post/where-condition-in-laravel-relationship-exampleexample.html
Last updated
By Hardik Savani January 4, 2019 Category : LaravelPlayUnmuteLoaded: 1.00%FullscreenLaravel 5 provide great feature as model relationship. but if you need to use where clause on your relation model then how you can do it?, You can make where condition using whereHas function. it doesn't matter which relation you used like one to one, one to many, many to many, has many through etc.
Sometime might be you need to add where condition with your relation model then you can simply use whereHas() as i provide bellow example with laravel 6, laravel 7, laravel 8 and laravel 9 app.
Several days ago i had same situation when i used laravel relationship. need to use where condition like i need to get those users that country is "India". so i write condition like as bellow example:
Example:
You can also pass dynamic variable inside the whereHas() like this way:
Example 2:
Read Also: Laravel - Comment System Tutorial from Scratch
I hope it can help you....