Edit File: CategoryResource.php
<?php namespace App\Http\Resources\Api\General\Settings; use Illuminate\Http\Resources\Json\JsonResource; class CategoryResource extends JsonResource { public function toArray($request) { return [ 'id' => $this->id, 'name' => $this->name, 'image' => $this->image, 'has_childs' => (bool) ($this?->childes_count ?? 0), 'parent_id' => $this->when($this->parent_id, $this->parent_id), 'parent_name' => $this->when($this->parent_id, $this->parent->name ?? ''), ]; } }
Back to File Manager