/**
  * Remove the specified cancelationpolicy from storage.
  *
  * @param  int $id
  * @return Response
  */
 public function destroy($hotel_id, $id)
 {
     Session::put('manage', 'policies');
     CancellationPolicy::destroy($id);
     return Redirect::route('control-panel.hotel.hotels.edit', $hotel_id);
 }