Anyone knows how to concatenate strings in twig? I want to do something like: {{ concat('http://', app.request.host) }} 1Best Answer 11 This should work fine: {{ 'http://' ~ app.request.host...
  • May 3, 2022
  • 0 Comments