App\Models\Forum\PollOption::votes PHP 메소드

votes() 공개 메소드

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