Account Users

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

@if($isauthorized)
@endif
{{-- --}} @foreach($records as $record) {{-- --}} @endforeach @if ($records->hasPages()) @endif
Name Email Role Active Edit
{{ $record->name }} {{ $record->email }} @if($isauthorized && $account->user_id != $record->id ) @else {{ ucfirst($record->pivot->role_id) }} @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