<?phpnamespace App\Controller;use App\Controller\AbstractController;use App\Entity\Page;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class CategoryController extends AbstractController{ public function categories() { return $this->render('Public/categories.html.twig'); }}