feat(Search): base module

This commit is contained in:
2025-04-20 13:55:00 -05:00
parent e720ca05f4
commit f8667af685
10 changed files with 1556 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Search\Framework\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
final class SearchController extends AbstractController
{
#[Route('/search', name: 'app_search', methods: ['GET'])]
public function index(): Response
{
return $this->render('search/results.html.twig', [
'controller_name' => 'SearchController',
]);
}
}