/**
  * Remove the specified predefinedtrip from storage.
  *
  * @param  int $id
  * @return Response
  */
 public function destroy($id)
 {
     PredefinedTrip::destroy($id);
     return Redirect::route('predefinedtrips.index');
 }