format("%a") ; } #[Route('/{startDate}/{endDate}', name: 'home')] // 01-01-2024 public function home(string $startDate, string $endDate): Response { $countDays = $this->diffDays(new DateTimeImmutable($startDate), new DateTimeImmutable($endDate)); return $this->render('home.html.twig', ['count' => $countDays]); } }