2023-06-02 12:34:45 +02:00
|
|
|
<x-layout>
|
2023-08-11 17:31:53 +02:00
|
|
|
<x-team.navbar :team="auth()
|
|
|
|
->user()
|
|
|
|
->currentTeam()" />
|
|
|
|
<livewire:team.form />
|
2023-08-31 09:56:37 +02:00
|
|
|
@if (isCloud())
|
2023-07-13 22:03:27 +02:00
|
|
|
<div class="pb-8">
|
2023-08-14 15:22:29 +02:00
|
|
|
<h2>Subscription</h2>
|
2023-08-22 17:44:49 +02:00
|
|
|
@if (data_get(currentTeam(),
|
2023-07-13 22:03:27 +02:00
|
|
|
'subscription'))
|
2023-08-17 15:19:37 +02:00
|
|
|
<livewire:subscription.actions />
|
2023-07-13 22:03:27 +02:00
|
|
|
@else
|
2023-08-14 14:00:10 +02:00
|
|
|
<x-forms.button class="mt-4"><a class="text-white hover:no-underline"
|
2023-08-30 16:01:38 +02:00
|
|
|
href="{{ route('subscription.index') }}">Subscribe Now</a>
|
2023-07-13 22:03:27 +02:00
|
|
|
</x-forms.button>
|
2023-06-12 20:54:29 +02:00
|
|
|
@endif
|
2023-08-17 15:19:37 +02:00
|
|
|
|
2023-06-12 20:54:29 +02:00
|
|
|
</div>
|
2023-06-09 15:55:21 +02:00
|
|
|
@endif
|
2023-08-11 17:31:53 +02:00
|
|
|
<livewire:team.delete />
|
2023-06-02 12:34:45 +02:00
|
|
|
</x-layout>
|