round Modifier

Rounds a number to a specified precision (number of digits after the decimal point). Defaults to 0, or whole numbers.

pi: 3.14159265359
{{ pi | round }}
{{ pi | round(2) }}
{{ Statamic::modify($pi)->round() }}
{{ Statamic::modify($pi)->round(2) }}
3
3.14
Docs feedback

Submit improvements, related content, or suggestions through Github.

Betterify this page →