add Modifier

Add 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.

books: 5
magazines: 10
{{ books | add:5 }}
{{ books | add:magazines }}
{{ books | +:magazines }}
{{-- Using Modifiers --}}
{{ Statamic::modify($books)->add(5) }}
{{ Statamic::modify($books)->add($magazines) }}
{{ Statamic::modify($books)->add($magazines) }}
 
{{-- Using PHP --}}
{{ $books + 5 }}
{{ $books + $magazines }}
{{ $books + $magazines }}
10
15
15
Docs feedback

Submit improvements, related content, or suggestions through Github.

Betterify this page →