Members

@foreach (auth()->user()->currentTeam()->members->sortBy('name') as $member) @endforeach
Name Email Role Actions
@if (auth()->user()->isAdmin()) @if (!$transactional_emails_active)

Invite a new member

Invite
@else

Invite a new member

You need to configure SMTP settings before you can invite a new member via email.
@if ($invitations->count() > 0)

Pending Invitations

@endif @foreach ($invitations as $invite)
{{ $invite->email }}
Sent: {{ $invite->created_at }}
@endforeach @endif @endif