alexpechkarev / google-maps

Collection of Google Maps API Web Services for Laravel
https://alexpechkarev.github.io/google-maps/
MIT License
523 stars 115 forks source link

Ability to get more than 5 reviews #100

Closed Donneh closed 1 year ago

Donneh commented 2 years 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?

alexpechkarev commented 1 year ago

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.