Skip to content Skip to footer navigation
You are reading the docs for an old version of Statamic. Consider upgrading to Statamic 6.

Is Future Modifier

Returns true if date is in the future.

date: October 21 2015
another_date: November 2030
{{ if date | is_future }}
{{ if another_date | is_future }}
@if (Statamic::modify($date)->isFuture()->fetch()) ... @endif
@if (Statamic::modify($another_date)->isFuture()->fetch()) ... @endif
false
true