feat: presents popular tv shows on landing page

This commit is contained in:
2025-04-27 21:36:45 -05:00
parent 5d257e4404
commit c664e9fbca
4 changed files with 36 additions and 4 deletions

View File

@@ -22,6 +22,7 @@ final class IndexController extends AbstractController
'active_downloads' => $this->downloadRepository->getActivePaginated(),
'recent_downloads' => $this->downloadRepository->latest(5),
'popular_movies' => $this->tmdb->popularMovies(1, 6),
'popular_tvshows' => $this->tmdb->popularTvShows(1, 6),
]);
}
}