Helper function in Laravel for Fractal
6th of February 2016
What is Fractal?
Fractal provides a presentation and transformation layer for complex data output, the like found in RESTful APIs, and works really well with JSON. Think of this as a view layer for your JSON/YAML/etc.
When building an API it is common for people to just grab stuff from the database and pass it to
json_encode()
. This might be passable for “trivial” APIs but if they are in use by the public, or used by mobile applications then this will quickly lead to inconsistent output.
For more on implementing the Fractal library check out the website, http://fractal.thephpleague.com/
Building on Fractal for Laravel
This post shows how by adding two additional Laravel Helper Functions it is possible to abstract all of the functionality of the Fractal library out of your controllers into two reusable helper functions. This ensures your controllers remain clean and readable.
Below is an example of the end goal for the controller, all the fractal
implementation has been refactor out of the controller
behind the two helper functions:
collection()
is used to return paginated collections of transformed objects.item()
is used for returning the single transformed objects.
Both helper functions accept a collection or single model object as their first parameter and have an addition second optional parameter which can accept either a closure containing the transformation or a custom class transformer, checkout the Fractal documentation for more information as to how the transformation classes and closures are implemented.
If no transformation closure or class is specified then a default transformation is applied to the object which simply returns the object with no transformation applied.
The Helper File
First we will add a helper file in our application where we can add helper functions. Adding the file in the autoloader will allow access to the functions across the application.
And now for the helper functions…