public function delete()
 {
     $id = Input::only('id');
     Notifications::destroy($id);
     return redirect(route('notifications.index'));
 }