Try the following:
$count = User::count(); $skip = 10; User::skip($skip)->take($count - $skip)->get();
With a single request:
User::skip($skip)->take(18446744073709551615)->get();
This is ugly, but this is an example from the official MySQL manual :
To get all the lines from a specific offset to the end of the set result, you can use some large amount for the second parameter. This statement retrieves all rows from the 96th row to the last:
SELECT * FROM tbl LIMIT 95,18446744073709551615;
source share