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