Closed Donneh closed 1 year ago
Hey,
I'm fetching place details with the following code in laravel 8.
$response = GoogleMapsFacade::load('placedetails')->setParam([ 'place_id' => 'my_place_id' ])->get();
This only seems to return 5 reviews, while the place has many more.
Is it possible to get all reviews of a given place?
Hi @Donneh,
According to the Place Details response documentation you will only get up to five reviews. You can order results by most_relevant or newest.
most_relevant
newest
Hey,
I'm fetching place details with the following code in laravel 8.
This only seems to return 5 reviews, while the place has many more.
Is it possible to get all reviews of a given place?