%PDF- %PDF-
Direktori : /var/www/html/diaspora/api/app/Transformers/App/ |
Current File : /var/www/html/diaspora/api/app/Transformers/App/KkdSectionDetailTransformer.php |
<?php namespace App\Transformers\App; use App\Models\KkdSection; use App\Transformers\BaseTransformer; class KkdSectionDetailTransformer 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 ? $this->injectStyles() . $section->description . $this->injectScripts() : '', '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, ]; } }