<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class SolutionController extends AbstractController
{
public function index(): Response
{
$title = 'About | Edurock - Education LMS Template';
return $this->render('index.html.twig', [
'title' => $title,
]);
}
}