I use Symfony2 and twig templating. Think of the Q&A exact same as stackoverflow. There are list of questions with the count of score, answers, views and so on. How to count the answers of the qeustions inside loop in twig? There are OneToMany relation between Question and Answer tables.
{% for question in questions %}
<li>{{ question.score }}</li>
<li>{# there should be the count // count($question->getAnswers()) #}</li>
<li>{{ question.view }}</li>
{% endfor %}
Or if there is any better way to achieve this, I am open to suggestions.
This will print the count:
{{ question.answers|length }}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With