public function addNewRoomFormSubmit(adminAddNewRoomsFormSubmitRequest $request)
 {
     $room_name = \Input::get('room_name');
     $room_type = \Input::get('room_type');
     $room_description = \Input::get('room_description');
     $room_price = \Input::get('room_price');
     Room::addNewRoomDetails($room_name, $room_type, $room_price, $room_description);
     return redirect('adminAddNewRooms')->with('message', "Successfully Added!!!");
 }