Crea un modello di gioco che estenda Eloquent e usa questo:
Game::take(30)->skip(30)->get();
take() qui otterremo 30 record e skip() qui verrà spostato a 30 record.
Nelle recenti versioni di Laravel puoi anche usare:
Game::limit(30)->offset(30)->get();