# Is Blank

Returns `true` if the string contains only whitespace chars.

```yaml
ghost:
zombie: BRAINSSSS
```

::tabs

::tab antlers
```antlers
{{ if ghost | is_blank }}
{{ if zombie | is_blank }}
```
::tab blade
```blade
@if (Statamic::modify($ghost)->isBlank()->fetch()) @endif
@if (Statamic::modify($zombie)->isBlank()->fetch()) @endif
```
::

```html
true
false
```
