%PDF- %PDF-
Direktori : /var/www/html/news/app/Transformers/ |
Current File : /var/www/html/news/app/Transformers/SocialTransformer.php |
<?php namespace App\Transformers; use App\Models\Social; class SocialTransformer extends BaseTransformer { public function transform(Social $social) { $data = $this->transformColumns($social); return $data; } protected function getTransformableColumns() { return [ 'id' => 'id', 'name' => 'name', 'url' => 'url', 'is_active' => 'is_active', 'created_at' => 'created_at', 'updated_at' => 'updated_at', ]; } }