slimphp / Slim

Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs.
http://slimframework.com
MIT License
11.94k stars 1.95k forks source link

Better way of create links #1661

Closed leandroruel closed 8 years ago

leandroruel commented 8 years ago

create links to our routes is a bit complicated, create links like this would be great:

<a href="{{ route('home'); }}">home</a>
geggleto commented 8 years ago

There is my friend. I see you are using Twig. If you are using Twig-View...

<a href="{{ path_for('home') }}">home</a>

https://github.com/slimphp/Twig-View/blob/master/src/TwigExtension.php#L37

leandroruel commented 8 years ago

yes! i'm using twig-slim