src/Controller/InstrumentController.php line 41

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\Instrument;
  4. use App\Repository\InstrumentRepository;
  5. use APY\BreadcrumbTrailBundle\Annotation\Breadcrumb;
  6. use Knp\Component\Pager\PaginatorInterface;
  7. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  8. use Symfony\Component\HttpFoundation\Request;
  9. use Symfony\Component\HttpFoundation\Response;
  10. use Symfony\Component\Routing\Annotation\Route;
  11. #[Route('/instruments'name'app_instrument_')]
  12. #[Breadcrumb(title'Instruments'routeName'app_instrument_index')]
  13. class InstrumentController extends AbstractController
  14. {
  15.     #[Route('/'name'index')]
  16.     public function index(
  17.         PaginatorInterface $paginator,
  18.         InstrumentRepository $instrumentRepository,
  19.         Request $request
  20.     ): Response {
  21.         $pagination $paginator->paginate(
  22.             $instrumentRepository->createQueryBuilder('i')->getQuery(),
  23.             $request->query->getInt('page'1), /*page number*/
  24.             /*limit per page*/
  25.         );
  26.         return $this->render('instrument/index.html.twig', [
  27.             'instruments' => $pagination
  28.         ]);
  29.     }
  30.     #[Route('/{slug}'name'show')]
  31.     #[Breadcrumb(
  32.         title'{instrument.company.name}',
  33.         routeName'app_company_show',
  34.         routeParameters: ['slug' => '{instrument.company.slug}']
  35.     )]
  36.     #[Breadcrumb(title'{instrument.name}')]
  37.     public function show(Instrument $instrument): Response
  38.     {
  39.         return $this->render('instrument/show.html.twig', [
  40.             'instrument' => $instrument,
  41.         ]);
  42.     }
  43. }