collection($album->getPhotos(), new PhotoTransformer); } public function transform(Album $album) { return [ 'id' => $this->int($album->id), 'title' => $album->title, 'updated_at' => $album->updatedAt, 'created_at' => $album->createdAt ]; } }