Skip to content

Instantly share code, notes, and snippets.

@Mombuyish
Created April 26, 2017 17:07
Show Gist options
  • Save Mombuyish/7f9030b7b2f39aacee63bd007457002a to your computer and use it in GitHub Desktop.
Save Mombuyish/7f9030b7b2f39aacee63bd007457002a to your computer and use it in GitHub Desktop.
<?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