{$downlines = app('query')->getMyDownlines();}

Referral

₦{number_format($downlines->commission_earned, 2, '.', ',')}

Commission Earned

Overview

Check these stats below in case you have missed something.

  • Total downlines

    Showing your total downlines

    {$downlines->total_downlines}
  • Completed Bookings

    Bookings completed by downlines

    {$downlines->completed_bookings}
  • Total Bookings

    Total bookings initiated by downlines

    {$downlines->total_bookings}

Referral History

@if (count($downlines->history) == 0)
No referral history for you at the moment.
@else @foreach ($downlines->history as $id => $data) @endfor
SN First Name Last Name Referral Link Registration Date
{intval($id) + 1} {ucfirst($data->name)} {ucfirst($data->surname)} {$link = 'https://' . str_replace('@', '.', $data->internalEmail);} {$link} {date('m/d/Y', $data->created)}
@endif
@partial('main-footer', ['message' => $message]);