/**
  * Get a new query instance without a given scope.
  *
  * @param \Illuminate\Database\Eloquent\ScopeInterface $scope
  * @return \Illuminate\Database\Eloquent\Builder 
  * @static 
  */
 public static function newQueryWithoutScope($scope)
 {
     //Method inherited from \Illuminate\Database\Eloquent\Model
     return \Webpatser\Countries\Countries::newQueryWithoutScope($scope);
 }