*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'title' => $this->title, 'requirement_total' => $this->requirements()->count(), 'project_total' => $this->projects()->count(), 'begin' => $this->begin, 'end' => $this->end, 'description' => $this->description, ]; } }