public function save(Entity\Photo $photo)
 {
     $data = $photo->toArray();
     if (array_key_exists('id', $data)) {
         return $this->update($photo);
     } else {
         return $this->toEloquent($data)->save();
     }
 }