MySQL データベースからデータを取得していますが、レンダリングされた TWIG ファイルに表示されません。TWIG ファイルで、Twig の dump() 関数を実行すると、すべてのデータが表示されますが、TWIG は空です。
$em = $this->getDoctrine()->getEntityManager();
$yorumlar = $em->getRepository('SiteSiteBundle:Yorum')->find($id);
if (!$yorumlar) {
throw $this->createNotFoundException($id . ' nolu Yorum bulunamadı!');
}
return $this->render('SiteSiteBundle:Default:liste.html.twig', array(
'yorumlar' => $yorumlar
));