Search code examples
twig

How to convert Number in word in Twig File


I want to convert Price:200$ in words like Price:Two Hundred$.

In twig like this {{ price }} but this is show Number.

Can any one know how it is possible show this price in word in Twig ?


Solution

  • Twig won't show anything spelled out without adding this functionality. Check out craue's TwigExtensionsBundle, it contains a Twig Extension with a filter for spelling out numbers.

    https://github.com/craue/TwigExtensionsBundle

    Usage:

    spelled out number: {{ price | craue_spellout }}