Skip to content

Instantly share code, notes, and snippets.

@anvodev
Last active May 3, 2020 11:11
Show Gist options
  • Save anvodev/64357964bc1d02aa185ac5c181457d3d to your computer and use it in GitHub Desktop.
Save anvodev/64357964bc1d02aa185ac5c181457d3d to your computer and use it in GitHub Desktop.
Basic Controller with index action
<?php
class HomeController extends AbstractController
{
/**
* @Route("/", name="home")
*/
public function index()
{
return $this->render('home/index.html.twig', [
'controller_name' => 'HomeController',
]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment