Skip to content

Instantly share code, notes, and snippets.

@Encang-Cutbray
Last active November 6, 2022 09:09
Show Gist options
  • Save Encang-Cutbray/608e294d411bd9a7264037eea8bce832 to your computer and use it in GitHub Desktop.
Save Encang-Cutbray/608e294d411bd9a7264037eea8bce832 to your computer and use it in GitHub Desktop.
Laravel Pagination with transform
$users = tap(User::query()
->paginate(100),function($paginatedInstance){
return $paginatedInstance->getCollection()->transform(function ($value) {
$value->test = 'test';
return $value;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment