*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'title' => $this->title, 'slug' => $this->slug, 'workers' => UserResource::collection($this->whenLoaded('workers')), 'description' => $this->description, ]; } }