# Now

The current date/time. If you use it on its own, it will be converted to your [`display_timezone`](/tips/timezones.md) and formatted using the default time format.

When you pass it to a tag parameter, or modifier, it will be treated as a UTC [`Carbon`](https://carbon.nesbot.com/) instance.

::tabs

::tab antlers
```antlers
{{ now }}
```
::tab blade
```blade
{{ $now }}

-- or --

{{ now() }}
```
::

```html
December 30th 2015
```

Also available as `{{ today }}` and `{{ current_date }}` aliases.
