Shorcut Where relationships

// Before:

User::whereHas('posts', function ($query) {
  $query->where('published_at', '>', now());
})->get();

// After
User::whereRelation('posts', 'published_at', '>', now());