I honestly dont quite understand what you are talking about. There isnt a getMany() method in eloquent?
The way eloquent works is that you preload the relationship using ->with() and then access it as a property. for instance
$post = Post::with('comments')->with('author')->find(1);
//you can now do this in blade if this is a hasMany relationship
@foreach ($post->comments as $comment)
{{$comment->title}}
@endforeach
//or this if you have a belongsTo relationship
{{$this->author->name}}
Those relationships look like this
public function comments()
{
return $this->hasMany(Comment::class);
}
public function author()
{
return $this->belongsTo(Author::class);
}