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

55 lines
2.3 KiB
PHP
Raw Normal View History

2024-01-07 15:23:41 +00:00
<div>
2023-09-04 07:44:44 +00:00
<x-team.navbar />
2023-08-07 13:31:42 +00:00
<h2>Members</h2>
<div class="flex flex-col">
<div class="flex flex-col">
<div class="overflow-x-auto">
<div class="inline-block min-w-full">
<div class="overflow-hidden">
2024-03-25 18:07:59 +00:00
<table class="min-w-full divide-y dark:divide-coolgray-400 divide-neutral-400">
<thead>
2024-03-21 11:44:32 +00:00
<tr>
<th class="px-5 py-3 text-xs font-medium text-left uppercase">Name
</th>
<th class="px-5 py-3 text-xs font-medium text-left uppercase">Email</th>
<th class="px-5 py-3 text-xs font-medium text-left uppercase">Role</th>
<th class="px-5 py-3 text-xs font-medium text-left uppercase">Actions</th>
</tr>
</thead>
2024-03-25 18:07:59 +00:00
<tbody class="divide-y dark:divide-coolgray-400 divide-neutral-200">
@foreach (currentTeam()->members as $member)
<livewire:team.member :member="$member" :wire:key="$member->id" />
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
2023-07-13 20:03:27 +00:00
</div>
@if (auth()->user()->isAdminFromSession())
<div class="py-4">
@if (is_transactional_emails_active())
<h2 class="pb-4">Invite New Member</h2>
2023-07-13 20:03:27 +00:00
@else
<h2>Invite New Member</h2>
2023-08-22 15:44:49 +00:00
@if (isInstanceAdmin())
2024-03-25 09:41:44 +00:00
<div class="pb-4 text-xs dark:text-warning">You need to configure (as root team) <a href="/settings#smtp"
class="underline dark:text-warning">Transactional
Emails</a>
2023-07-13 20:03:27 +00:00
before
you can invite a
new
member
via
email.
</div>
@endif
@endif
2023-08-11 15:31:53 +00:00
<livewire:team.invite-link />
2023-07-13 20:03:27 +00:00
</div>
2023-08-11 15:31:53 +00:00
<livewire:team.invitations :invitations="$invitations" />
2023-07-13 20:03:27 +00:00
@endif
2024-01-07 15:23:41 +00:00
</div>