[ 'type' => 'to-do-lists', 'to_do_list_id' => $this->id, 'attributes' => [ 'data' => [ 'name' => $this->name, 'to_dos' => new ToDoCollection($this->toDos), 'posted_by' => new UserResource($this->user), 'last_updated' => $this->updated_at->diffForHumans(), // 'cover_image' => new ImageResource($this->coverImage), ] ] //'tags' => TagResource::collection($this->tags), ], 'links' => [ 'self' => $this->path(), ] ]; } }