/**
  * @Given /^I reset "([^"]*)" from notifications/
  */
 public function iResetFromNotifications($notice_id)
 {
     if ($results = Notification::find($notice_id)) {
         $results->delete();
     }
 }