# Published

A boolean that specifies whether the content is published. Or "live", or "not a draft".

::tabs

::tab antlers
```antlers
{{ if published }}
    Published!
{{ else }}
    Draft
{{ /if }}
```
::tab blade
```blade
@if ($published)
  Published!
@else
  Draft
@endif
```
::