/**
  * Disable the specified appointment in storage.
  *
  * @param  int  $appointment_id
  * @return Response
  *
  */
 public function destroy($advisor_id, $unavailable_id)
 {
     Unavailable::destroy($unavailable_id);
 }