%PDF- %PDF-
Direktori : /var/www/html/o91-api/app/Transformers/ |
Current File : /var/www/html/o91-api/app/Transformers/BaseTransformer.php |
<?php namespace App\Transformers; use League\Fractal\TransformerAbstract; class BaseTransformer extends TransformerAbstract { public function includeItem($data, $transformer) { return response()->json(fractal($data, $transformer)); } public function includeCollection($data, $transformer) { return $this->collection($data, $transformer); } }