<?php
namespace JF\JuridicusBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
/**
* Vorteile controller.
*
*/
class VorteileController extends AbstractController
{
/**
* Lists current prices.
* @Route("/vorteile", name="vorteile")
*/
public function indexAction()
{
return $this->render("@JFJuridicusBundle/Vorteile/index.html.twig", array(
));
}
}