%PDF- %PDF-
Direktori : /var/www/html/diaspora/api/app/Transformers/ |
Current File : /var/www/html/diaspora/api/app/Transformers/KkdSectionTransformer.php |
<?php namespace App\Transformers; use App\Models\KkdSection; class KkdSectionTransformer extends BaseTransformer { /** * @param KkdSection $section * * @return array */ public function transform(KkdSection $section) { return [ 'id' => $section->id, 'title' => $section->title, 'order' => $section->order, 'description' => $section->description ?: '', 'is_visible' => $section->is_visible, 'can_be_enabled' => $section->canBeEnabled(), 'available_in' => $section->translations() ->get() ->pluck('locale'), 'created_at' => $section->created_at, 'updated_at' => $section->updated_at, ]; } }