How can I detect in which bundle am I?
for exemple, when I\'m in web.com/participants/list, I want to read \"participants\".
You can get the bundle name in the controller simply like that:
// Display "SybioCoreBundle" echo $this->getRequest()->attributes->get('_template')->get('bundle');
And inside a Twig template:
{{ app.request.get('_template').get('bundle') }}