/**
  * Show the form for editing the specified roombooking.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $roombooking = RoomBooking::find($id);
     return View::make('roombookings.edit', compact('roombooking'));
 }