Hello guys, Im trying to run the following code:
{{ url('user/' ~ base64_encode(post.User.user_id)) }}
But when Volt compiles a semicolon appears miss placed
<?= $this->url->get('user/' . VoltLib::base64_encode($post->User->user_id);) ?>
Volt cant handle with that?
I guess this should return without semicolon
<?= $this->url->get('user/' . VoltLib::base64_encode($post->User->user_id)) ?>
How can i bypass that? thank you