coolify/resources/views/subscription.blade.php

20 lines
730 B
PHP
Raw Normal View History

2023-07-14 11:27:08 +02:00
<x-layout-subscription>
@if ($settings->is_resale_license_active)
2023-07-27 16:22:13 +02:00
<div class="flex justify-center mx-10">
<div>
<div class="flex gap-2">
<h3>Subscription</h3>
2023-08-11 20:19:42 +02:00
<livewire:switch-team />
2023-07-27 16:22:13 +02:00
</div>
<div class="flex items-center pb-8">
<span>Currently active team: <span
class="text-warning">{{ session('currentTeam.name') }}</span></span>
</div>
2023-08-11 20:19:42 +02:00
<x-pricing-plans />
2023-07-27 16:22:13 +02:00
</div>
2023-07-14 11:27:08 +02:00
</div>
2023-07-14 12:09:56 +02:00
@else
2023-07-27 14:45:34 +02:00
<div class="px-10">Resale license is not active. Please contact your instance admin.</div>
2023-07-14 11:27:08 +02:00
@endif
</x-layout-subscription>