mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 19:04:41 -04:00
Refactor purchase.blade.php layout
This commit is contained in:
parent
86f54470bb
commit
05f8e2a72c
@ -1,11 +1,20 @@
|
|||||||
<div class="min-w-full flex h-screen">
|
<div class="grid grid-cols-12">
|
||||||
<div class="w-full lg:w-1/2 m-10">
|
<div class="col-span-12 xl:col-span-6 bg-white flex flex-col items-center lg:h-screen">
|
||||||
<h1 class="text-3xl">{{ $subscription->name }}</h1>
|
<div class="w-full p-10 lg:mt-24 md:max-w-md">
|
||||||
<p>C: {{ $this->component }}</p>
|
<img
|
||||||
<p>Quantity: {{ $this->context['quantity'] }}</p>
|
class="h-8"
|
||||||
|
src="{{ $subscription->company->present()->logo }}"
|
||||||
|
alt="{{ $subscription->company->present()->name }}" />
|
||||||
|
|
||||||
|
<div class="my-10" id="container">
|
||||||
|
@livewire($this->component, ['context' => $context, 'subscription' => $this->subscription], key($this->component))
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="w-full lg:w-1/2 m-10">
|
<div class="col-span-12 xl:col-span-6 bg-gray-50 flex flex-col items-center">
|
||||||
@livewire($this->component, ['context' => $context, 'subscription' => $this->subscription], key($this->component))
|
<div class="w-full p-10 lg:mt-24 md:max-w-3xl">
|
||||||
|
<h1 class="text-3xl">{{ $subscription->name }}</h1>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user