Where https://phalcon-php-framework-documentation.readthedocs.org/en/1.0.0/reference/tags.html?highlight=link_to#generating-links ? And how ? )))
Are you looking for something like this?
<?php echo \Phalcon\Tag::linkTo(['products/edit/10', 'Edit', 'class' => 'edit-btn']) ?>
and in Volt
{{ link_to(['products/edit/10', 'Edit', 'class':'edit-btn']) }}
No, using this:
{{ link_to(['for':'some-route', 'param':'param'], 'Edit') }}
how to create links based on routes?
No, link based on routes with css attributes...
{{ link_to(['for':'some-route', 'param':'param'], 'Edit', 'class': 'my-fav-class', 'style': 'font-size:18px') }}
Hm, it seems I've tried this =), thanks, i will try tomorrow...