Track your referrals and earnings
Share this link to earn 10% commission on all purchases
{{ $this->referralLink }}
No referrals yet. Share your link to get started.
@endforelseNo earnings yet. Earnings appear when your referrals make purchases.
@endforelse| Referee | Status | Signed Up | Earnings |
|---|---|---|---|
|
@if($referral->referee)
{{ $referral->referee->name ?? $referral->referee->email }}
@else
Pending signup
@endif
|
@php
$statusColor = match($referral->status) {
'pending' => 'gray',
'converted' => 'blue',
'qualified' => 'green',
'disqualified' => 'red',
default => 'gray',
};
@endphp
|
{{ $referral->signed_up_at?->format('d M Y') ?? '-' }} | GBP {{ number_format($referral->total_commission, 2) }} |
| No referrals yet. | |||
| Referee | Order | Commission | Status | Matures |
|---|---|---|---|---|
|
{{ $commission->referral?->referee?->name ?? $commission->referral?->referee?->email ?? 'Unknown' }}
|
{{ $commission->currency }} {{ number_format($commission->order_amount, 2) }} |
{{ $commission->currency }} {{ number_format($commission->commission_amount, 2) }}
{{ $commission->commission_rate }}%
|
@php
$statusColor = match($commission->status) {
'pending' => 'amber',
'matured' => 'green',
'paid' => 'blue',
'cancelled' => 'red',
default => 'gray',
};
@endphp
|
{{ $commission->matures_at?->format('d M Y') ?? '-' }} |
| No commissions yet. | ||||
| Number | Method | Amount | Status | Requested | Actions |
|---|---|---|---|---|---|
{{ $payout->payout_number }}
|
|
{{ $payout->currency }} {{ number_format($payout->amount, 2) }}
@if($payout->btc_txid)
{{ Str::limit($payout->btc_txid, 16) }}
@endif
|
@php
$statusColor = match($payout->status) {
'requested' => 'amber',
'processing' => 'blue',
'completed' => 'green',
'failed' => 'red',
'cancelled' => 'gray',
default => 'gray',
};
@endphp
|
{{ $payout->requested_at?->format('d M Y') ?? '-' }} |
@if($payout->isRequested())
|
| No payouts yet. | |||||