Skip to content

Instantly share code, notes, and snippets.

@rslhdyt
Last active March 1, 2018 03:05
Show Gist options
  • Save rslhdyt/ab17461bef7a9552e54e73a362574e7e to your computer and use it in GitHub Desktop.
Save rslhdyt/ab17461bef7a9552e54e73a362574e7e to your computer and use it in GitHub Desktop.
Laravel : overide paginate collection object
<?php
....
$products = Product::paginate();
$products->getCollection()->each(function($product) {
// insert new data
$product->price = 1000;
});
....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment