1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 01:41:34 +02:00
invoiceninja/resources/views/billing-portal/v3/purchase.blade.php
2024-02-08 19:55:47 +01:00

12 lines
429 B
PHP

<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>