Last active
March 1, 2018 03:05
-
-
Save rslhdyt/ab17461bef7a9552e54e73a362574e7e to your computer and use it in GitHub Desktop.
Laravel : overide paginate collection object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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