Repository URL to install this package:
|
Version:
1.0.0 ▾
|
<?php
namespace Modules\Core\Traits;
use Modules\Core\Support\NestableCollection;
trait NestableTrait
{
/**
* Return a custom nested collection
*
* @param array $models
* @return NestableCollection
*/
public function newCollection(array $models = array())
{
return new NestableCollection($models);
}
}