Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

getting route name not the route path in twig symfony

i'm developing an application with symfony3.
I want to get route name in twig. i did this :

 {% set current_path = path(app.request.get('_route')) %}
 {{ current_path }}

it displays the url of the current page. But i want to get route name not the path. example :

personnel_index:
    path:     /liste
    defaults: { _controller: "PersonnelBundle:Personnel:index" }
    methods:  GET

must return : personnel_index

so how can i get the route name

like image 785
walidtlili Avatar asked Jan 31 '17 14:01

walidtlili


1 Answers

This is because you put the path function try like this

{% set current_path = app.request.get('_route') %}
{{ current_path }}
like image 50
Constantin Avatar answered Oct 18 '22 15:10

Constantin