@foreach($invites as $invite) @endforeach
Invite Type Invited Email/Invite Link Usage Count Usage Limit Expires In
{{ is_null($invite->email) ? 'Link' : 'Email' }} @if(is_null($invite->email)) {{ $invite->link }} @else {{ $invite->email }} @endif {{ $invite->usage_count }} {{ $invite->usage_limit ?? 'No limit' }} {{ $invite->expires_at?->diffForHumans() ?? 'Never' }} {{ Form::open(['route' => ['admin.invites.destroy', $invite->id], 'method' => 'delete']) }} {{ Form::button('', ['type' => 'submit', 'class' => 'btn btn-sm btn-danger btn-icon', 'onclick' => "return confirm('Are you sure?')"]) }} {{ Form::close() }}