Refer & Earn

Share your referral link and earn credits when friends book!

Your Referral Link

Share this link with friends to earn rewards

Your referral code: {{ $referralCode }}

{{ $stats['total_referrals'] }}
Total Referrals
{{ $stats['pending_referrals'] }}
Pending
{{ $stats['completed_referrals'] }}
Completed
RM {{ number_format($stats['current_balance'], 2) }}
Credit Balance

How It Works

1

Share Your Link

Send your referral link to friends

2

Friend Signs Up

They register using your link

3

Both Earn Credits

You get RM {{ number_format($rewardsConfig['referrer_reward'], 2) }}, they get RM {{ number_format($rewardsConfig['referred_reward'], 2) }}

Recent Referrals

@if($referrals->count() > 0)
@foreach($referrals as $referral)
{{ $referral->referred->name }}
{{ $referral->created_at->diffForHumans() }}
{{ ucfirst($referral->status) }}
@endforeach
@else

No referrals yet. Share your link to get started!

@endif

Credit Transactions

@if($transactions->count() > 0)
@foreach($transactions as $transaction)
{{ $transaction->description }}
{{ $transaction->created_at->format('d M Y, h:i A') }}
{{ $transaction->type === 'credit' ? '+' : '-' }}RM {{ number_format($transaction->amount, 2) }}
@endforeach
@else

No transactions yet.

@endif