App\Models\Forum\PollOption::votes PHP Method

votes() public method

public votes ( )
    public function votes()
    {
        return $this->hasMany(PollVote::class, 'poll_option_id', 'poll_option_id')->where('topic_id', $this->topic_id);
    }