SAND-framework/console/skel/symfony-app/src/Controller/AdminController.php

21 lines
470 B
PHP
Raw Normal View History

<?php
namespace App\Controller;
2020-12-09 10:26:26 +01:00
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
class AdminController extends AbstractController
{
/**
* @Route("/symfony/admin", name="admin")
*/
public function adminAction()
{
// replace this example code with whatever you need
return $this->render('default/page.html.twig', [
'text' => 'admin',
]);
}
}