Ends With Modifier
Returns true
if the value ends with a given string. This comparison is case-insensitive.
punchline: That's what she said!
{{ if (punchline | ends_with('she said!')) }}
{{ if (punchline | ends_with('your mom!')) }}
@if (Statamic::modify($punchline)->endsWith('she said!')->fetch())
@endif
@if (Statamic::modify($punchline)->endsWith('your mom!')->fetch())
@endif
true
false
Docs Feedback
Submit improvements, related content, or suggestions through Github.
Betterify this page