create() ->orderBy('.id', 'DESC') ->paginate(1, 4) ; $projects = $projectQuery->create() ->orderBy('.id', 'DESC') ->paginate(1, 3) ; return $this->render('admin/dashboard.html.twig', [ 'posts' => $posts, 'projects' => $projects, ]); } }