Insert Modifier
Inserts a string at the position provided. The beginning of the string is position 0.
opinion: This is yummy.
{{ opinion | insert('not', 8) }}
{{ Statamic::modify($opinion)->insert(['not', 8]) }}
This is not yummy.
Inserts a string at the position provided. The beginning of the string is position 0.
opinion: This is yummy.
{{ opinion | insert('not', 8) }}
{{ Statamic::modify($opinion)->insert(['not', 8]) }}
This is not yummy.