*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'key' => $this->key, 'name' => $this->name, 'value' => $this->value, 'parent_id' => $this->parent_id, 'path' => $this->path, 'sort' => $this->sort, 'options' => $this->options, 'image' => $this->image, 'images' => $this->images, 'description' => $this->description, 'content' => $this->content, 'created_at' => $this->created_at?->timestamp, ]; } }