/**
  * Returns a new query builder without any of the tenant scopes applied.
  *
  *     $allUsers = User::allTenants()->get();
  *
  * @return \Illuminate\Database\Eloquent\Builder
  */
 public static function allTenants()
 {
     return static::$landlord->newQueryWithoutTenants(new static());
 }