Post::whereExists(function($query) use() {
$query->select('*')->from('entity_tag')->where('entity_tag.entity_id', 'posts.entity_id'));
});
SELECT * FROM pr_posts WHERE EXISTS(
SELECT * FROM pr_entity_tag WHERE pr_entity_tag.entity_id = posts.entity_id
)