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

45 lines
1.5 KiB
PHP
Raw Normal View History

2023-07-13 22:03:27 +02:00
<x-layout>
2023-09-04 09:44:44 +02:00
<x-team.navbar />
2023-08-07 15:31:42 +02:00
<h2>Members</h2>
2023-07-13 22:03:27 +02:00
<div class="pt-4 overflow-hidden">
<table>
<thead>
2023-08-11 17:31:53 +02:00
<tr>
<th>Name</th>
<th>Email</th>
<th>Role</th>
<th>Actions</th>
</tr>
2023-07-13 22:03:27 +02:00
</thead>
<tbody>
2023-08-22 17:44:49 +02:00
@foreach (currentTeam()->members->sortBy('name') as $member)
2023-08-11 17:31:53 +02:00
<livewire:team.member :member="$member" :wire:key="$member->id" />
@endforeach
2023-07-13 22:03:27 +02:00
</tbody>
</table>
</div>
@if (auth()->user()->isAdminFromSession())
<div class="py-4">
@if (is_transactional_emails_active())
<h3 class="pb-4">Invite a new member</h3>
@else
<h3>Invite a new member</h3>
2023-08-22 17:44:49 +02:00
@if (isInstanceAdmin())
2023-07-13 22:03:27 +02:00
<div class="pb-4 text-xs text-warning">You need to configure <a href="/settings/emails"
2023-08-11 17:31:53 +02:00
class="underline text-warning">Transactional
Emails</a>
2023-07-13 22:03:27 +02:00
before
you can invite a
new
member
via
email.
</div>
@endif
@endif
2023-08-11 17:31:53 +02:00
<livewire:team.invite-link />
2023-07-13 22:03:27 +02:00
</div>
2023-08-11 17:31:53 +02:00
<livewire:team.invitations :invitations="$invitations" />
2023-07-13 22:03:27 +02:00
@endif
</x-layout>