validate($request, [ 'search' => 'required|string|max:64' ]); // Set the search term variable. $term = $input['search']; // Fetch all matching posts and send them to the search view. $games = Game::where('name', 'like', "%$term%") ->orWhere('alt_titles', 'like', "%$term%") ->orderBy('created_at', 'DESC') ->paginate(25); // Send the results to the view. return view('pages.search.games.show', compact('games')); } }