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) }}
33.14