<?php
namespace App\Controller;
use App\Entity\Instrument;
use App\Repository\InstrumentRepository;
use APY\BreadcrumbTrailBundle\Annotation\Breadcrumb;
use Knp\Component\Pager\PaginatorInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
#[Route('/instruments', name: 'app_instrument_')]
#[Breadcrumb(title: 'Instruments', routeName: 'app_instrument_index')]
class InstrumentController extends AbstractController
{
#[Route('/', name: 'index')]
public function index(
PaginatorInterface $paginator,
InstrumentRepository $instrumentRepository,
Request $request
): Response {
$pagination = $paginator->paginate(
$instrumentRepository->createQueryBuilder('i')->getQuery(),
$request->query->getInt('page', 1), /*page number*/
8 /*limit per page*/
);
return $this->render('instrument/index.html.twig', [
'instruments' => $pagination
]);
}
#[Route('/{slug}', name: 'show')]
#[Breadcrumb(
title: '{instrument.company.name}',
routeName: 'app_company_show',
routeParameters: ['slug' => '{instrument.company.slug}']
)]
#[Breadcrumb(title: '{instrument.name}')]
public function show(Instrument $instrument): Response
{
return $this->render('instrument/show.html.twig', [
'instrument' => $instrument,
]);
}
}