debriefingQuery = $debriefingQuery; $this->conferenceQuery = $conferenceQuery; $this->interventionQuery = $interventionQuery; } #[Route(path: '/', name: 'admin_dashboard_index')] public function index(): Response { return $this->render('admin/dashboard.html.twig', [ 'conferences' => $this->conferenceQuery->create()->latest()->find(), 'debriefings' => $this->debriefingQuery->create()->latest()->find(), 'interventions' => $this->interventionQuery->create()->latest()->find(), ]); } }