/**
  * Remove the specified photo from the database.
  *
  * @param int $albumId Id of the album
  * @param int $photoId Id of the photo
  * @return \Illuminate\View\View
  */
 public function destroy($albumId, $photoId)
 {
     $this->photo->delete($photoId);
     return \Redirect::route("gallery.album.show", array('id' => $albumId));
 }