addressesCache)) { $this->addressesCache = Addresses::builder(fn() => $this->request('GET', 'v1/addresses')) ->setBillable($this); } return $this->addressesCache; } /** * Check if the current user has a default billing address. * * @see \Anikeen\Id\Resources\Addresses::hasDefaultBillingAddress() * @throws Throwable */ public function hasDefaultBillingAddress(): bool { return $this->addresses()->hasDefaultBillingAddress(); } }