Filters

Modify variable values with Twig filters.

Filters enable you to modify the content of variables within your template.

If you'd like us to add a filter that caters to your needs please let us know via the suggestions board.

Available Filters

FilterDocumentation

escape

length

raw

money

slice

number_format

date

nl2br

replace

split

upper

lower

Filter Documentation

money

The money filter transforms a variable into a monetary format.

{% set value = 1 %}

{{ value|money }} // returns 1.00

Last updated