coolify/resources/views/team/index.blade.php

19 lines
557 B
PHP
Raw Normal View History

2023-06-02 12:34:45 +02:00
<x-layout>
2023-09-04 09:44:44 +02:00
<x-team.navbar />
2023-08-11 17:31:53 +02:00
<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-12-07 19:06:32 +01:00
@if (data_get(currentTeam(), 'subscription'))
<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-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>