/**
  * Show the form for creating a new rate
  *
  * @return Response
  */
 public function create($hotelid)
 {
     $rates = SupplementRate::all();
     return View::make('control-panel.hotel.supplement-rates.create', compact('hotelid', 'rates'));
 }