@extends('oxygen::layouts.master-dashboard') @section('content') {{ lotus()->pageHeadline($pageTitle) }} {{ lotus()->breadcrumbs([ ['Dashboard', route('dashboard')], ['Access Permissions', route('manage.access.index')], [$pageTitle, null, true] ]) }} Invite New Users @if ($invitations->isEmpty()) {{ lotus()->emptyStatePanel() }} @else
Sent Invitations
@foreach ($invitations as $invitation) @endforeach
Email Invited Role Sent Status Invite Link Actions
{{ $invitation->email }} @if ($invitation->role) {{ $invitation->role->title }} @endif @if ($invitation->sent_at) {{ $invitation->sent_at->diffForHumans() }} @else Not Sent @endif @if (empty($invitation->claimed_at)) Pending to Accept @else Accepted {{ $invitation->claimed_at->diffForHumans() }} @endif @if (empty($invitation->claimed_at)) Link @endif @if (empty($invitation->claimed_at))
@csrf
@endif
{{ lotus()->pageNumbers($invitations) }} @endif @endsection