20 lines
577 B
PHP
20 lines
577 B
PHP
<x-layout>
|
|
<x-team.navbar />
|
|
<livewire:team.form />
|
|
@if (isCloud())
|
|
<div class="pb-8">
|
|
<h2>Subscription</h2>
|
|
@if (data_get(currentTeam(),
|
|
'subscription'))
|
|
<livewire:subscription.actions />
|
|
@else
|
|
<x-forms.button class="mt-4"><a class="text-white hover:no-underline"
|
|
href="{{ route('subscription.index') }}">Subscribe Now</a>
|
|
</x-forms.button>
|
|
@endif
|
|
|
|
</div>
|
|
@endif
|
|
<livewire:team.delete />
|
|
</x-layout>
|