Back

/ 1 min read

whereRelation

// Before ❌
User::whereHas('posts', function ($query) {
$query->where('published', true);
})->get();
// After ✅
User::whereRelation('posts', 'published', true)->get();