{{ __('Invitations') }}
{{ __('Please review the list.') }}
{{ __('Invite') }}
@if ($invitations->isEmpty())

{{ __('There is no data to display') }}

@else
@foreach ($invitations as $invitation) @endforeach
{{ __('Invitation sent to') }} {{ __('Accepted at') }} {{ __('Accepted by') }} {{ __('Actions') }}
{{ $invitation->email }}
{{ $invitation->accepted_at }} @if ($invitation->acceptedBy) {{ $invitation->acceptedBy->name }} @endif
@if ($invitations->hasPages())
{{ $invitations->links() }}
@endif
@endif