Add Paddle health ops metrics

This commit is contained in:
Codex Agent
2026-01-02 17:03:36 +01:00
parent 8f13465415
commit bc99929040
9 changed files with 524 additions and 3 deletions

View File

@@ -65,6 +65,11 @@ class Tenant extends Model
return $this->hasMany(PackagePurchase::class);
}
public function checkoutSessions(): HasMany
{
return $this->hasMany(CheckoutSession::class);
}
public function tenantPackages(): HasMany
{
return $this->hasMany(TenantPackage::class);