# Manufacturer List
The `manufacturer_list` object describes a list of manufacturers in the store. Use this object to access all manufacturers.
## Usage Example
```liquid
{%- comment -%} List all manufacturers {%- endcomment -%}
{% for manufacturer in manufacturer_list.all %}
- {{ manufacturer.name }}
{% endfor %}
```
## Properties
### all
List all available [manufacturers](/reference/liquid/objects/store/manufacturer/) in the store.
### size
Returns the number of manufacturers in the list.