Skip to content Skip to footer navigation

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