私は小枝に持っています:
{% for entry in blog_entries %}
<h2>{{ entry.title }}</h2>
<p>{{ entry.body }}</p>
{% endfor %}
そしてエンティティで:
public function getTitle($prefix) {
return $prefix . $this->title;
}
この例で変数を渡すにはどうすればよいですか?
<h2>{{ entry.title(test) }}</h2>
?