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

Is Past Modifier

Returns true if date is in the past.

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