Basic Output
The repeater
field type always returns an \Anomaly\Streams\Platform\Entry\EntryCollection
instance of related repeater models.
Example
$entry->example; // Collection of models.
Twig
{% for entry in entry.example %}
<h2>{{ entry.title }}</h2>
<p>{{ entry.description }}</p>
{% endfor %}