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