src/Controller/HomeController.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Repository\CompanyRepository;
  4. use App\Repository\InstrumentRepository;
  5. use App\Repository\SoundRepository;
  6. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  7. use Symfony\Component\HttpFoundation\Response;
  8. use Symfony\Component\Routing\Annotation\Route;
  9. class HomeController extends AbstractController
  10. {
  11.     #[Route('/'name'app_home')]
  12.     public function index(
  13.         InstrumentRepository $instrumentRepository,
  14.         SoundRepository $soundRepository,
  15.         CompanyRepository $companyRepository
  16.     ): Response {
  17.         $instruments $instrumentRepository->findBy(criteria: [], limit5);
  18.         return $this->render('home/index.html.twig', [
  19.             'instruments' => $instruments,
  20.             'sounds' => $soundRepository->findBy([], orderBy: ['id' => 'DESC'], limit6),
  21.             'companies' => $companyRepository->getRandomly()
  22.         ]);
  23.     }
  24. }