findVerfuegbare(); return $this->render('immobilie/index.html.twig', [ 'immobilien' => $immobilien, ]); } #[Route('/{id}', name: 'app_immobilie_show', requirements: ['id' => '\d+'])] public function show(Immobilie $immobilie): Response { return $this->render('immobilie/show.html.twig', [ 'immobilie' => $immobilie, ]); } #[Route('/suche', name: 'app_immobilie_suche')] public function suche(ImmobilieRepository $repository): Response { return $this->render('immobilie/suche.html.twig'); } }