# Is Empty

Checks to see if an array is empty without any set values. Works with numeric indexes, associative, and string keyed arrays of all depths. It's pretty smart, as these things go.

```yaml
some_data:
  - is living here
more_data:
  with:
  hopes:
  and:
  dreams:
    -
```

::tabs

::tab antlers
```antlers
{{ if some_data | is_empty }}
{{ if more_data | is_empty }}

```
::tab blade
```blade
@if (Statamic::modify($some_data)->isEmpty()->fetch()) ... @endif
@if (Statamic::modify($more_data)->isEmpty()->fetch()) ... @endif
```
::

```html
false
true
```
