This commit is contained in:
2022-05-24 11:32:24 +02:00
parent e2adb5271e
commit 93ed4af064
2 changed files with 10 additions and 7 deletions

View File

@ -47,12 +47,9 @@ class IndexController extends AbstractController
MerBeDMRepository $repoDm
): Response
{
dump('MerServiceRepository->findByOfferId');
dump($repo->findByOfferId($request->query->get('offer_id')));
dump('MerBeDMRepository->findByOfferId');
dump($repoDm->findByOfferId($request->query->get('offer_id')));
return $this->render('index/notificationDm.html.twig');
return $this->render('index/notificationDm.html.twig', [
'serviceRepo' => $repo->findByOfferId($request->query->get('offer_id')),
'beDmRepo' => $repoDm->findByOfferId($request->query->get('offer_id'))
]);
}
}