<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class ServiceController extends AbstractController
{
/**
* @Route("/services", name="app_service")
*/
public function index(): Response
{
return $this->render('service/index.html.twig', [
'controller_name' => 'ServiceController',
]);
}
/**
* @Route("/services/building", name="app_service_building")
*/
public function building_service(): Response
{
return $this->render('service/building.html.twig', [
'controller_name' => 'ServiceController',
]);
}
/**
* @Route("/services/industry", name="app_service_industry")
*/
public function industry_service(): Response
{
return $this->render('service/industry.html.twig', [
'controller_name' => 'ServiceController',
]);
}
/**
* @Route("/services/public_work", name="app_service_public_work")
*/
public function public_work_service(): Response
{
return $this->render('service/public_work.html.twig', [
'controller_name' => 'ServiceController',
]);
}
/**
* @Route("/services/office_personal_maintenance", name="app_service_office_personal_maintenance")
*/
public function office_personal_maintenance_service(): Response
{
return $this->render('service/office_personal_maintenance.html.twig', [
'controller_name' => 'ServiceController',
]);
}
/**
* @Route("/services/training", name="app_service_training")
*/
public function training_service(): Response
{
return $this->render('service/training.html.twig', [
'controller_name' => 'ServiceController',
]);
}
}