Returns the last X characters of a string, where X is any positive integer, or the last item in an array.
title: 2015 Denver Nuggetsarray: - Sonic - Knuckles - Tails
{{ title | last(7) }}{{ array | last }}
{{ Statamic::modify($title)->last(7) }}{{ Statamic::modify($array)->last() }}
NuggetsTails