Created
April 26, 2017 17:07
-
-
Save Mombuyish/7f9030b7b2f39aacee63bd007457002a to your computer and use it in GitHub Desktop.
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 | |
class Post extends Model | |
{ | |
/** | |
* Create a new Eloquent Collection instance. | |
* | |
* @param array $models | |
* @return \App\Collection | |
*/ | |
public function newCollection(array $models = []) | |
{ | |
return new PostCollection($models); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment