Level 58
One possible solution is to pass the orderByRaw clause to the paginate method instead of chaining it after the query. Here's an example:
$users = DB::table('users')
->orderByRaw('FIELD(status, "active", "pending", "disabled")')
->paginate(10);
This should apply the orderByRaw clause to all pages of the pagination.