Maksim
Results
1
comments of
Maksim
I have a problem with the number of items and totalCount ```php $repo = $this->getDoctrine()->getRepository(MyEntity::class); $resQuery = $repo->findAll(); $paginator = $this->get('knp_paginator'); $pagination = $paginator->paginate($resQuery, $request->query->getInt('page', 1), 12); dump($pagination); ``` ```...