Skip to content Skip to footer navigation

Last Modifier

Returns the last X characters of a string, where X is any positive integer, or the last item in an array.

title: 2015 Denver Nuggets
array:
- Sonic
- Knuckles
- Tails
{{ title | last(7) }}
{{ array | last }}
{{ Statamic::modify($title)->last(7) }}
{{ Statamic::modify($array)->last() }}
Nuggets
Tails