1 | <?php |
||
10 | trait Transformable |
||
11 | { |
||
12 | /** |
||
13 | * Tell eloquent to make the collection as a TransformableCollection |
||
14 | * |
||
15 | * This allows us to mix in methods to the collection. |
||
16 | * |
||
17 | * @param array $models |
||
18 | * |
||
19 | * @return TransformableCollection |
||
20 | */ |
||
21 | public function newCollection(array $models = []) |
||
25 | } |
||
26 |