Added simple SMD reel calculator.

This commit is contained in:
Jan Böhmer 2020-06-03 21:29:40 +02:00
parent fe405aae1e
commit e2ee0df58a
4 changed files with 268 additions and 0 deletions

View file

@ -0,0 +1,26 @@
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
/**
* @Route("/tools")
* @package App\Controller
*/
class ToolsController extends AbstractController
{
/**
* @Route("/reel_calc", name="tools_reel_calculator")
* @return Response
*/
public function reelCalculator() : Response
{
return $this->render("Tools/ReelCalculator/main.html.twig");
}
}