codingphase/fractalfy is a Laravel package for laravel wrapper for fractal..
It currently has 1 GitHub stars and 4.389 downloads on Packagist (latest version v2.0.9).
Install it with composer require codingphase/fractalfy.
Discover more Laravel packages by codingphase
or browse all Laravel packages to compare alternatives.
Last updated
Laravel Wrapper for Fractal
composer require codingphase/fractalfy
Add your new provider to the providers array of config/app.php:
'providers' => [
// ...
CodingPhase\Fractalfy\FractalfyServiceProvider::class,
// ...
],
Extend your controller with FractalfyController
class DashboardController extends FractalfyController
{
...
}
Return collection
$users = Users::all();
return $this->fractal
->collection($users, new UserTransformer)
->get();
Return resource with pagination
$users = Users::all();
return $this->fractal
->paginate($users, new UserTransformer)
->get();
Use Fractalfy Helpers (already included in FractalfyController)
Popular
return $this->respondOK();
return $this->respondNotFound();
return $this->respondUnauthorized();
return $this->respondUnprocessable();
return $this->respondBadRequest();
return $this->respondWithSuccess(200); //any success code
return $this->respondWithError(400); //any success code
Other
return $this->respondOK($message); //pass message to respond
return $this->setMessage($message)->respondOK();
return $this->setMessage($message)->setStatusCode($statuscode)->respondWithSuccess();
return $this->setMessage($message)->setStatusCode($statuscode)->respondWithError();