<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Annotation\Route;
/**
* @Route("/patienten")
*/
class PatientenController extends AbstractController
{
/**
* @Route("/", name="pat_home")
*/
public function homeAction()
{
return $this->render('patienten/home.html.twig', array(
// ...
));
}
/**
* @Route("/verstehen", name="pat_morbus")
*/
public function morbusAction()
{
return $this->render('patienten/morbus.html.twig', array(
// ...
));
}
/**
* @Route("/alltag", name="pat_alltag")
*/
public function alltagAction()
{
return $this->render('patienten/alltag.html.twig', array(
// ...
));
}
/**
* @Route("/hilfe", name="pat_hilfe")
*/
public function hilfeAction()
{
return $this->render('patienten/hilfe.html.twig', array(
// ...
));
}
}