If you want to see whether the current user has voted or not then you can do something as follows:
$post->voters() ->where('user_id', auth()->id()) ->where('type', 'down') ->exists();