Level 54
The EloquentRole model has a relationship to users:
/**
* The Users relationship.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
*/
public function users()
{
return $this->belongsToMany(static::$usersModel, 'role_users', 'role_id', 'user_id')->withTimestamps();
}
So if you load a role, you ought to be able to just call it's users() method to fetch all associated users