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

22 lines
634 B
PHP
Raw Normal View History

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