/**
  * Delete a category based on the ID passed in
  * @param  integer $id The category ID
  * @return Redirect
  */
 public function getDelete($id)
 {
     $this->collections->deleteById($id);
     return Redirect::to('manage/collections')->with('success', '<strong>Collection Deleted</strong> The collection was properly removed.');
 }