marcreichel / igdb-laravel

Simplify the integration of the IGDB API into your Laravel app. Including IGDB webhook support.
https://marcreichel.dev/docs/igdb-laravel
MIT License
104 stars 22 forks source link

Example of pagination #25

Closed jadersbr closed 3 years ago

jadersbr commented 3 years ago

Hi,

Could you give me an example of pagination? I did not succeed in my tests.

When i try execute Game::where('rating_count', '>=', 800)->with(['cover'])->Paginate(48);

I got result like bellow:

image

And this didn't working.

Best regards.

marcreichel commented 3 years ago

Hi, you can use the skip and take methods to get a pagination. Calling paginate directly is not supported for now.

jadersbr commented 3 years ago

Ok, thank you.