19 lines
457 B
PHP
19 lines
457 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Controller;
|
||
|
|
||
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||
|
use Symfony\Component\HttpFoundation\Response;
|
||
|
use Symfony\Component\Routing\Annotation\Route;
|
||
|
|
||
|
class AppController extends AbstractController
|
||
|
{
|
||
|
#[Route('/homepage', name: 'homepage')]
|
||
|
public function index(): Response
|
||
|
{
|
||
|
return $this->render('app/index.html.twig', [
|
||
|
'controller_name' => 'AppController',
|
||
|
]);
|
||
|
}
|
||
|
}
|