@extends('tyro-dashboard::layouts.admin') @section('title', 'Invitation Links') @section('breadcrumb') Dashboard / Invitation Links @endsection @section('content')
@if(request('search')) Clear @endif
@if($links->count())
@foreach($links as $link) @endforeach
User Email Referrals Created Actions
@if($link->user->profile_photo_path || ($link->user->use_gravatar && $link->user->email)) {{ $link->user->name }} @else {{ strtoupper(substr($link->user->name ?? 'U', 0, 1)) }} @endif
{{ $link->user->name ?? 'Unknown' }}
{{ $link->user->email ?? 'N/A' }} {{ $link->referrals->count() }} {{ $link->created_at->format('M d, Y') }}
{{ $link->created_at->format('h:i A') }}
@if($links->hasPages())
{{ $links->links() }}
@endif @else

No invitation links found

Create an invitation link to get started with referrals.

Create Invitation Link
@endif
@endsection