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

22 lines
644 B
PHP
Raw Normal View History

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 />
@if (is_cloud())
2023-07-13 22:03:27 +02:00
<div class="pb-8">
2023-08-14 15:22:29 +02:00
<h2>Subscription</h2>
2023-07-13 22:03:27 +02:00
@if (data_get(auth()->user()->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"
href="{{ route('subscription') }}">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>