*/ public function toArray(Request $request): array { $data = [ 'id' => $this['id'], 'category' => $this['category'], 'title' => $this['title'], 'body' => $this->when(isset($this['body']), $this['body']), 'updated_at' => $this['updated_at'], ]; return HookManager::filter('user.knowledge.resource', $data, $request, $this); } }