Hrvoje
Hrvoje
I have managed to create a polymorphic fractal transformer. Have a look at https://github.com/yucadoo/polymorphic-fractal
I read the zip format specification. It appears the zero header flag is part of a file header, so it is specific to each file.
I have managed to implement a polymorphic transformer and published it [here](https://github.com/yucadoo/polymorphic-fractal). I needed this for a activity feed.
I think the transformer should have an additional method fired from the Scope before executing the tranformer over a collection. https://github.com/thephpleague/fractal/blob/master/src/Scope.php#L360 In there you can do the eager loading. The...
@matthewtrask I would like to share my approach. I use Laravel (Eloquent). I have implemented a custom scope that prepares the data. ```
> Yea, I would imagine we would need an Eloquent implementation/Doctrine implementation and any other ORM that is out there. However for this I am inclined to start with Eloquent...
Hi @joelharkes, > is there currently any way to record in your transformers which includes need to eager load what entities? You partially can. In the provided code you can...