Account Users

A list of all the users in your account including their name and email.

@if($isauthorized)
@endif
@if($activeTab !== 'clients') @endif {{-- --}} {{-- {{ dd($roles) }} --}} @foreach($records as $record) @if($activeTab !== 'clients') @endif {{-- --}} @endforeach @if ($records->hasPages()) @endif
Name EmailRoleClient Active Edit
{{ $record->name }} {{ $record->email }} @if($isauthorized && $account->user_id != $record->id ) @else @php $roleTitle = $roles->firstWhere('key', $record->pivot->role_id)?->title ?? ucfirst($record->pivot->role_id); @endphp {{ $roleTitle }} @endif @if($isauthorized) @if($account->user_id == $record->id) N/A @else @endif @else {{ $record->pivot->is_client ? 'Yes' : 'No' }} @endif @if($isauthorized) @if($account->user_id == $record->id) Owner @else @endif @else {{ $record->pivot->active ? 'True' : 'False' }} @endif Edit, {{ $record->name }}
@if(count($invitations) && $isauthorized)

Pending Invitations

A list of all the pending users waiting to accept your invitiation.

@foreach($invitations as $invitation) @endforeach @if ($records->hasPages()) @endif
Email Created Delete
{{ $invitation->email }} {{ $invitation->created_at }} @if($isauthorized) @endif
@endif