mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
12 lines
429 B
PHP
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>
|