1.

How to create Controllers's Action in Symfony2?

Answer»

In your CREATED controller you can CREATE your action with the FOLLOWING code.Example

public function indexAction()
{
     RETURN $this->RENDER('user/login.html.twig', [ ]);
}



Discussion

No Comment Found