From 53d3888f5b732d47cfdb51410088bb5cfe56b8da Mon Sep 17 00:00:00 2001 From: David Bomba Date: Fri, 14 Jan 2022 17:46:22 +1100 Subject: [PATCH] Fixes for coupons on free subscriptions --- app/Http/Livewire/BillingPortalPurchase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Livewire/BillingPortalPurchase.php b/app/Http/Livewire/BillingPortalPurchase.php index d93a639d43eb..e6a5de79c66e 100644 --- a/app/Http/Livewire/BillingPortalPurchase.php +++ b/app/Http/Livewire/BillingPortalPurchase.php @@ -409,7 +409,7 @@ class BillingPortalPurchase extends Component 'quantity' => $this->quantity, 'contact_id' => $this->contact->id, 'client_id' => $this->contact->client->id, - 'coupon' => '', + 'coupon' => $this->coupon, ]); }