This package gives you a quick way to create Transformers for your Eloquent models when using Fractal.
Issue the command:
composer require "metricloop/laravel-transformer-maker"
Then register the service provider:
// config/app.php
'providers' => [
// ...
MetricLoop\TransformerMaker\TransformerMakerServiceProvider::class,
];
Then just use it like any other Artisan make
command:
php artisan make:transformer Person
And get the stubbed out PersonTransformer.php
in App/Transformers
!
To Phil Sturgeon and the team at the PHP League for Fractal. And if you haven't already, go check out Phil's book about building APIs: Build APIs You Won't Hate.
Metric Loop is an Austin based technology company that strives to create value by helping its clients reduce overhead, simplify their hardware procurement, and run their businesses more efficiently.
The MIT License (MIT). Please see License File for more information.