Multiply a value or another variable to your variable. Pass an integer or the name of a second variable as the parameter. Also supports *
as shorthand.
smiles: 3winks: 4
{{ smiles | multiply(10) }}{{ smiles | multiply($winks) }}{{ smiles | *($winks) }}
{{ Statamic::modify($smiles)->multiply(10) }}{{ Statamic::modify($smiles)->multiply($winks) }}
301212