1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

Add purchase view for billing portal v3

This commit is contained in:
Benjamin Beganović 2024-02-08 19:55:47 +01:00
parent 9877c5ab3d
commit b9f49f5e05

View File

@ -0,0 +1,11 @@
<div class="min-w-full flex h-screen">
<div class="w-full lg:w-1/2 m-10">
<h1 class="text-3xl">{{ $subscription->name }}</h1>
<p>C: {{ $this->component }}</p>
<p>Quantity: {{ $this->context['quantity'] }}</p>
</div>
<div class="w-full lg:w-1/2 m-10">
@livewire($this->component, ['context' => $context, 'subscription' => $this->subscription], key($this->component))
</div>
</div>