Have You any example of pagging using query builder without eloquent pagination() method as eloquent is slow for select query operation??
@kaushal
$users = DB::table('users')->paginate(5);
it should not be noticably quicker
Please or to participate in this conversation.