<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;class AppController extends AbstractController{ #[Route('/', name: 'app_homepage')] public function homepage() { return $this->render('appcontroller/homepage.html.twig'); }}