I have the following models.
class User extends Eloquent {
  public function comments() {
    return $this->hasMany('Comment');
  }
}
class Comment extends Eloquent {
  public function user() {
      return $this->belongsTo('User');
  }
}
For the sake of this example, a user could have 1,000s of comments. I am trying to limit them to just the first 10. I have tried doing it in the User model via
class User extends Eloquent {
  public function comments() {
    return $this->hasMany('Comment')->take(10);
  }
}
and via UserController via closures
$users = User::where('post_id', $post_id)->with([
  'comments' => function($q) {
     $q->take(10);
   }
]);
Both methods seem to only work on the first record of the result. Is there a better way to handle this?
 
    