/**
  * Remove the specified rate from storage.
  *
  * @param  int $id
  * @return Response
  */
 public function destroy($hotelid, $id)
 {
     SupplementRate::destroy($id);
     return Redirect::back();
 }