public function findHidden($id)
 {
     $photo = Photo::onlyTrashed()->where('id', $id)->get();
     if ($photo) {
         return $this->fromEloquent($photo);
     }
 }