src/Controller/MenuImagesController.php line 14
<?phpnamespace App\Controller;use App\Entity\MenuImage;use App\Repository\MenuImageCollectionRepository;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class MenuImagesController extends AbstractController{#[Route('/menu_images', name: 'app_menu_images')]public function index(MenuImageCollectionRepository $menuImageCollectionRepository): Response{return $this->render('menu_images/index.html.twig', ['collection_menu_images' => $menuImageCollectionRepository->findAllWithMenuImages(),]);}}