<?php
namespace App\Controller\Front;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
/**
* Class MobileController
* @package App\Controller\Mobile
*/
class MobileController extends AbstractController
{
/**
* @return Response
* @Route("/mobile/{vueRouting}", name="mobile", requirements={"vueRouting"=".+"})
*/
public function mobile(): Response
{
return $this->render('mobile.html.twig');
}
}