Appearance
Some tips with Laravel
// Before: User::whereHas('posts', function ($query) { $query->where('published_at', '>', now()); })->get(); // After User::whereRelation('posts', 'published_at', '>', now());