@extends(getTemplate().'.view.layout.layout') @section('page')

My Referral Earnings
Your balance: {{currencySign().number_format(Auth::user()->credit) }}

@if(count($oldPayments) < 1)

None yet, click on any course , copy the referral link, share it on social media.
When people click on it to register, you will see your earnings and commissions here.

@else
@foreach($oldPayments as $oldPayment) @endforeach
Commission
{{ $oldPayment->user['username'] }} | {{ $oldPayment->created_at }} @if($oldPayment->status != 'confirm') {{ $oldPayment->user['phone'] }} @endif {{ $oldPayment->content['title'] }} {{ currencySign(). number_format($oldPayment->amount * env('referrer_user_id')) }}
@endif
@endsection