Solution:
Accessing a relationship like a method (i.e. $category->posts()) will give you a query builder, on which you can chain methods:
$category->posts()
$firstFourPosts = $category->posts()->take(4)->get();