statamic / ideas

💡Discussions on ideas and feature requests for Statamic
https://statamic.dev
31 stars 1 forks source link

Add possibility to add or remove array elements with antlers #871

Open wm-simon opened 2 years ago

wm-simon commented 2 years ago

Something like this would be cool:

{{ array | unset(1) }}
{{ array | unset('keyname') }}
{{ array | unset('value') }}

{{ array | push('value') }}

{{ array[2] = 'value' ))
{{ array['keyname'] = 'value' ))