These films come from The Movie Database (TMDB). Here is the real PHP I wrote to fetch and filter them.
public function __construct() { $this->apiUrl = config('tmdb.api_url'); $this->apiToken = config('tmdb.api_token'); }
private function fetchMovies($page = 1, $excludedWords = []) { $response = Http::withToken($this->apiToken) ->get("{$this->apiUrl}/discover/movie", [ 'language' => 'en-US', 'page' => $page, 'with_genres' => '10751' ]); $movies = $response->json(); // Filter out movies containing any of the excluded words $filtered = array_filter($movies['results'] ?? [], function ($movie) use ($excludedWords) { $title = strtolower($movie['title'] ?? $movie['name'] ?? ''); foreach ($excludedWords as $word) { if (strpos($title, strtolower($word)) !== false) { return false; } } return true; }); // Pagination logic $moviesPerPage = 8; $totalMovies = count($filtered); $startIndex = ($page - 1) * $moviesPerPage; return array_slice($filtered, $startIndex, $moviesPerPage); }
private function fetchChristianMovies($page = 1) { $response = Http::withToken($this->apiToken) ->get("{$this->apiUrl}/list/8938", [ 'language' => 'en-US', 'page' => $page ]); return $response->json(); }
private function fetchRecommendations($id) { $response = Http::withToken($this->apiToken) ->get("{$this->apiUrl}/movie/{$id}/recommendations"); return $response->json(); }
Rating: 7.606
After Acme products fail him one too many times in his dogged pursuit of the Roadrunner, Wile E. Coy...
Rating: 7.027
Teenage Moana answers the Ocean's call and, for the first time, voyages beyond the reef of her islan...
Rating: 6.729
When Chloe develops a destructive new superpower, the Hero League orders her to an elite boarding sc...
Rating: 8.347
When Bonnie receives a Lilypad tablet as a gift and becomes obsessed, Buzz, Woody, Jessie and the re...
Rating: 7.554
This is the rambunctious, ridiculous and totally true story of how the Minions conquered Hollywood,...
Rating: 7.008
The Paw Patrol lands on a mysterious dinosaur island after a storm, where they meet Rex, a stranded...
Rating: 7.676
After cracking the biggest case in Zootopia's history, rookie cops Judy Hopps and Nick Wilde find th...
Rating: 8.229
Having thwarted Bowser's previous plot to marry Princess Peach, Mario and Luigi now face a fresh thr...