Get the modulus value (remainder after division) of a value split by another numeric value. Pass an integer or the name of a second variable as the parameter. Also supports %
as shorthand.
bottles: 3glasses: 14
{{ glasses | mod(14) }}{{ glasses | mod($bottles) }}{{ glasses | %($bottles) }}
{{ Statamic::modify($glasses)->mod(14) }}{{ Statamic::modify($glasses)->mod($bottles) }}
022