laravel where on relationsship column

Solutions on MaxInterview for laravel where on relationsship column by the best coders in the world

showing results for - "laravel where on relationsship column"
April
10 Jan 2019
1Player::whereHas('roleplay', function($q){
2   $q->where('column_name', 'value');
3})->get();
4