/**
  * Delete a notification giving the id
  * of it
  *
  * @param $notification_id
  * @return Bool
  */
 public function delete($notification_id)
 {
     return $this->notification->where('id', $notification_id)->delete();
 }