Have you tried it another way?
$node = Node::with('tags')->find(1723);
return $node;
In your view you can then do
@foreach ($node->tags as $tag)
@endforeach
This is the proper way of retrieving relationships and using them throughout your application!
Documentation: https://laravel.com/docs/5.6/eloquent-relationships#eager-loading