<?phpnamespace App\Controller;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class HomeController extends BaseController{ /** * Ruta de inicio * @Route("/", name="home") * * @return Response */ public function show(): Response { return $this->render( 'pages/home.html.twig', [ 'title' => 'Colombia Criptomonedas | Inicio', 'data' => $this->datos ] ); }}?>