add mailto to reports

This commit is contained in:
2024-10-15 12:15:57 +02:00
parent 598acfd77c
commit aa759af8c5
9 changed files with 129 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace App\Services;
use App\Entity\Clients;
use App\Entity\Reports;
use App\Helper\MonthHelper;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Twig\Environment;
class MailtoServices extends AbstractController
{
public function takeUrl(Reports $reports): string
{
}
}