Figured out a decent solution. Add to AppServiceProvider@register:
$this->app->bind('TCG\Voyager\Models\Post', function ($app) {
return new App\Post;
});
Create the new model that extends Voyager's model, and use a conditional addGlobalScope: