/**
  * Get a new query builder that doesn't have any global scopes.
  *
  * @return \Illuminate\Database\Eloquent\Builder|static 
  * @static 
  */
 public static function newQueryWithoutScopes()
 {
     //Method inherited from \Illuminate\Database\Eloquent\Model
     return \Webpatser\Countries\Countries::newQueryWithoutScopes();
 }