<?php
namespace App\Controller;
use App\Entity\Company;
use APY\BreadcrumbTrailBundle\Annotation\Breadcrumb;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
#[Route('/companies', name: 'app_company_')]
#[Breadcrumb(title: 'Instruments', routeName: 'app_instrument_index')]
//#[Breadcrumb(title: 'Marques', routeName: 'app_company_index')]/**/
class CompanyController extends AbstractController
{
#[Route('/', name: 'index')]
public function index(): Response
{
return $this->render('company/index.html.twig', [
'controller_name' => 'CompanyController',
]);
}
#[Route('/{slug}', name: 'show')]
#[Breadcrumb(
title: '{company.name}',
routeName: 'app_company_show',
routeParameters: ['slug' => '{company.slug}']
)]
public function show(Company $company): Response
{
return $this->render('company/show.html.twig', [
'company' => $company,
]);
}
}