<?php
declare(strict_types=1);
namespace App\Bundles\AdminBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class IndexController extends AbstractController
{
#[Route(path: '/', name: 'index')]
public function index(): Response
{
return $this->render('@Admin/index/index.html.twig', [
'google_app_id' => $this->getParameter('social_oauth_google_main_id')
]);
}
}