# Is Future

Returns `true` if date is in the future.

```yaml
date: October 21 2015
another_date: November 2030
```

::tabs

::tab antlers
```antlers
{{ if date | is_future }}
{{ if another_date | is_future }}
```
::tab blade
```blade
@if (Statamic::modify($date)->isFuture()->fetch()) ... @endif
@if (Statamic::modify($another_date)->isFuture()->fetch()) ... @endif
```
::

```html
false
true
```

:::warning
By default, when using a modifier on a date variable, it will be operating on the UTC date rather than the localized date.

Please refer to our [Timezones](/tips/timezones.md) guide for more information.
:::
