Skip to content

Instantly share code, notes, and snippets.

View domenicozinzidea's full-sized avatar

Domenico Zinzi domenicozinzidea

View GitHub Profile
public function search(Request $request)
{
if($request->has('text') && $request->input('text')) {
// Search for given text and return data
$data = $this->searchMovies($request->input('text'));
$moviesArray = [];
// If there are any movies that match given search text "hits" fill their id's in array
if($data['hits']['total'] > 0) {