*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'priority' => $this->priority, 'title' => $this->title, 'created_by' => new UserProfileResource($this->createdBy), 'status' => $this->status, ]; } }