Is Numeric Modifier
Returns true
if variable is a number or numeric string.
sequence: 4815162342
another_sequence: just type 4 8 15 16 23 42
{{ if sequence | is_numeric }}
{{ if another_sequence | is_numeric }}
@if (Statamic::modify($sequence)->isNumeric()->fetch()) ... @endif
@if (Statamic::modify($another_sequence)->isNumeric()->fetch()) ... @endif
true
false
Docs Feedback
Submit improvements, related content, or suggestions through Github.
Betterify this page