@extends('layouts.app') @section('title', 'Referrals') @section('content')
Invite & earn

Share rewards with your friends.

Invite friends to join {{ config('app.name') }}. You earn a reward when a new user joins through your link.

Your referral reward
{{ $rewardAmount ? rtrim(rtrim($rewardAmount, '0'), '.') : '—' }} {{ $rewardAsset?->symbol }}

for every successful referral

{{ route('home', ['ref' => $code->code]) }}

How it works

1
Share your link

Send it to friends who are new to {{ config('app.name') }}.

2
Your friend joins

They connect a new wallet through your referral link.

3
You get rewarded

Your referral reward is added automatically.

Your referrals

{{ $referrals->total() }}
@forelse ($referrals as $referral)@empty@endforelse
Referred userRewardStatusDate
{{ str($referral->referredUser->wallets->first()?->address)->limit(20) ?: 'New user' }}{{ rtrim(rtrim($referral->reward_amount, '0'), '.') }} {{ $referral->asset->symbol }}{{ $referral->created_at->format('M j, Y') }}
You haven’t referred anyone yet. Share your link to get started.
@endsection