so, using twig, I can easily access all categories associated to a post using {{ post.categories }}
But it seems that the reverse relation is not made automatically, so my question is, how can I access all posts associated to a categories ?
Tested this :
{% for category in collection %}
{{ d(category.posts) }} // return null, I would like it to return the collection of all posts associated to that category.
{% endfor %}