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

Latest games added to the IGDB list #41

Closed Askancy closed 3 years ago

Askancy commented 3 years ago

Is there an API or a way to know the latest games added to the IGDB list?

marcreichel commented 3 years ago

Just query the games and order them by the created_at field in descending order like so:

use MarcReichel\IGDBLaravel\Game;

Game::orderBy('created_at', 'desc')->take(15)->get();

take(15) is optional