public function updateSlot($content, $slotbuffer, $slotID)
 {
     $updated = Slot::updateAll(array('content' => $content, 'numberOfBookers' => $slotbuffer), ['slotID' => $slotID]);
     return $updated;
 }