@if ($accounts->total() == 0) {{ __('This user does not have any alternate accounts.') }} @else
@foreach ($accounts as $account) @endforeach
{{ __('User') }} {{ __('Invite Key') }} {{ __('Joindate') }}
{!! is_null($account->invite_key) ? 'None' : '' . e($account->invite_key) . '' !!} {{ $account->created_at->format('m/d/Y h:i:s A (T)') }}
{{ $accounts->links() }}
@endif