BookStack\User::roles PHP Method

roles() public method

The roles that belong to the user.
public roles ( ) : Illuminate\Database\Eloquent\Relations\BelongsToMany
return Illuminate\Database\Eloquent\Relations\BelongsToMany
    public function roles()
    {
        if ($this->id === 0) {
            return;
        }
        return $this->belongsToMany(Role::class);
    }