min/fractalcommands

Laravel commands for fractal
42
Install
composer require min/fractalcommands
License:MIT
Last Updated:Mar 17, 2017
Links: GitHub  ·  Packagist
Maintainer: leexikang

Fractal-commands commands for using Fractal on Laravel's project.

For more about Fractal Please go to Fractal Document.

Install

composer require min/fractalcommands
add service provider

dd class to config/app.php

Min\FractalCommands\FractalCommandsServiceProvider::class

Commands

  • php artisan fractal:init (create App/Api/Tranformer/ and Controllers/ApiControler)
  • php artisan tranformer:create {Tranformer} --model={model} (Create Tranformer in App\Api\Tranformer)

Usages

To use fractal on your controller, extend the Controller first which is created by the fractal:init command. Then call the tranform method povided by the Api Controller and pass the Sepcific tranformer class.

$this->transform(Post::all(), new PostTransformer); 

To tranform single item (model), use tranform command

$this->transform(Post::find(1), new PostTransformer); 

:warning: Call the parenet's (ApiController) constructor if you want to extend the Controller's constructor

parent::__construct(); 

The tranformer:create command will create the layout for your Tranformer in the App/Api/Tranformer Directory.

Licence

MIT

Related Packages

eventhomes/laravel-fractalhelper

Compatible with Laravel 5+ and Lumen 5+.

88,761 7
albertcht/lumen-console

A Lumen package for missing Laravel console commands.

38 2
divspace/responder

A Laravel 4 wrapper for Fractal to handle API responses

158 0
eilander/repository

Flexible Laravel 5 repository package.

149 0
lykegenes/laravel-api-response

A Laravel wrapper for thephpleague's Fractal package

186 3