<?php
namespace App\Controller\Produit\Service;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class AgenceController extends AbstractController
{
public function accueilcible(): Response
{
return $this->render('Theme/Users/Adminuser/Cible/accueilcible.html.twig',
array(
));
}
public function accueilagence(): Response
{
return $this->render('Theme/Users/Adminuser/Agence/accueilagence.html.twig',
array(
));
}
public function cabinet(): Response
{
return $this->render('Theme/Produit/Service/Service/cabinet.html.twig',
array(
));
}
public function cabinets(): Response
{
return $this->render('Theme/Produit/Service/Service/cabinets.html.twig',
array(
));
}
public function expertise(): Response
{
return $this->render('Theme/Produit/Service/Service/expertise.html.twig',
array(
));
}
}