*/ public function toArray(Request $request): array { return [ "id"=> $this->id, 'title' => $this->title, 'description' => $this->description, 'logo' => $this->logo , 'type' => $this->type, 'images' => ProjectImageResource::collection($this->whenLoaded('images')), ]; } }