From 1a2f6ea48d1ff6402bc97779ce982d309c4a3a9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Thu, 8 Feb 2024 19:55:38 +0100 Subject: [PATCH] Add BillingPortal Setup component --- app/Livewire/BillingPortal/Setup.php | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 app/Livewire/BillingPortal/Setup.php diff --git a/app/Livewire/BillingPortal/Setup.php b/app/Livewire/BillingPortal/Setup.php new file mode 100644 index 000000000000..bee2f4c21419 --- /dev/null +++ b/app/Livewire/BillingPortal/Setup.php @@ -0,0 +1,33 @@ +dispatch('purchase.context', property: 'quantity', value: 1); + $this->dispatch('purchase.next'); + } + + public function render() + { + return <<<'HTML' + + HTML; + } +}