I\'m trying to execute a closure that resides inside an array on a Twig template. Below you could find a simplified snippet of which I\'m trying:
//Sym
You cannot directly execute a closure inside your Twig template. However, if you need to call some PHP inside your template, you should use create a Twig Extension and include your logic inside.