# Dump

Dump a variable to the browser and see under the hood with data types and array exportation. Definitely just for debugging when in development.

```yaml
food:
  delicious:
    - bacon
    - sushi
```

::tabs

::tab antlers
```antlers
{{ food | dump }}
```
::tab blade
```blade
@dd($food)
```
::

```html
array:2 [▼
  "delicious" => array:2 [▶]
]
```

:::tip
You can also use the [dump tag](/tags/dump.md) to achieve a similar effect.
:::
